Skip to content

Commit f488cfa

Browse files
author
App Generator
committed
Release v2.0.1 - Fixes
1 parent 5c2e777 commit f488cfa

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

.eslintrc.js

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
module.exports = {
2+
parser: "babel-eslint",
3+
env: {
4+
es6: true,
5+
node: true,
6+
browser: true,
7+
},
8+
parserOptions: {
9+
ecmaVersion: 6,
10+
sourceType: "module",
11+
ecmaFeatures: {
12+
jsx: true,
13+
},
14+
"prettier": {
15+
"printWidth": 90,
16+
"bracketSpacing": false,
17+
"trailingComma": "es5"
18+
}
19+
},
20+
plugins: ["react"],
21+
extends: [
22+
"eslint:recommended",
23+
"plugin:react/recommended",
24+
"plugin:prettier/recommended",
25+
],
26+
rules: {
27+
"react/react-in-jsx-scope": "off",
28+
"prettier/prettier":
29+
[ "error",
30+
{
31+
"endOfLine": "auto"}
32+
]
33+
}
34+
};

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [2.0.1] 2021-10-08
4+
### Fixes:
5+
6+
- #1 - Compilation Error (Windows Env): Delete 'cr' [prettier/prettier]
7+
- #2 - Compilation Error (Windows Env): 'React' must be in scope when using JSX
8+
39
## [2.0.0] 2021-10-08
410
### Initial Import
511

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-soft-ui-dashboard",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"private": true,
55
"author": "Creative Tim & AppSeed",
66
"license": "See license in https://www.creative-tim.com/license",

0 commit comments

Comments
 (0)