File tree Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change
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
+ } ;
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
9
## [ 2.0.0] 2021-10-08
4
10
### Initial Import
5
11
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-soft-ui-dashboard" ,
3
- "version" : " 2.0.0 " ,
3
+ "version" : " 2.0.1 " ,
4
4
"private" : true ,
5
5
"author" : " Creative Tim & AppSeed" ,
6
6
"license" : " See license in https://www.creative-tim.com/license" ,
You can’t perform that action at this time.
0 commit comments