File tree Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ root = true
2
+
3
+ [* ]
4
+ indent_style = space
5
+ indent_size = 2
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [* .md ]
12
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change
1
+ {
2
+ "env" : {
3
+ "es6" : true ,
4
+ "node" : true ,
5
+ "browser" : true
6
+ },
7
+ "extends" : " eslint:recommended" ,
8
+ "installedESLint" : true ,
9
+ "parserOptions" : {
10
+ "ecmaFeatures" : {
11
+ "experimentalObjectRestSpread" : true ,
12
+ "jsx" : true
13
+ },
14
+ "sourceType" : " module"
15
+ },
16
+ "plugins" : [
17
+ " react"
18
+ ],
19
+ "rules" : {
20
+ "react/jsx-uses-vars" : 1 ,
21
+ "react/jsx-uses-react" : 1 ,
22
+ "react/react-in-jsx-scope" : 1 ,
23
+ "no-console" : 0 ,
24
+ "no-case-declarations" : 0
25
+ }
26
+ }
Original file line number Diff line number Diff line change 52
52
"babel-polyfill" : " ^6.7.2" ,
53
53
"babel-runtime" : " ~5.8.25" ,
54
54
"css-loader" : " ~0.18.0" ,
55
+ "eslint" : " ^3.8.1" ,
56
+ "eslint-plugin-react" : " ^6.4.1" ,
55
57
"file-loader" : " ^0.8.5" ,
56
58
"history" : " ^2.1.2" ,
57
59
"http-server" : " ~0.8.5" ,
82
84
"pig" : " http-server ./PIG -p 4041 -s & webpack --config webpack/PIG.config.js --progress --watch" ,
83
85
"build" : " NODE_ENV=production webpack --config webpack/production.config.js && webpack --config webpack/PIG.config.js" ,
84
86
"test" : " NODE_PATH=./node_modules jest" ,
87
+ "lint" : " eslint . --ignore-path .gitignore --ignore-pattern *.test.js" ,
85
88
"generate" : " node scripts/generate.js" ,
86
89
"prepublish" : " webpack --config webpack/publish.config.js" ,
87
90
"start" : " node ./Parse-Dashboard/index.js"
You can’t perform that action at this time.
0 commit comments