File tree Expand file tree Collapse file tree 5 files changed +31
-41
lines changed Expand file tree Collapse file tree 5 files changed +31
-41
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "parserOptions" : {
3+ "ecmaVersion" : 5
4+ },
5+ "extends" : " eslint:recommended" ,
6+ "env" : {
7+ "commonjs" : true
8+ },
9+ "rules" : {
10+ "strict" : [2 , " global" ],
11+ "block-scoped-var" : 2 ,
12+ "consistent-return" : 2 ,
13+ "eqeqeq" : [2 , " smart" ],
14+ "guard-for-in" : 2 ,
15+ "no-caller" : 2 ,
16+ "no-extend-native" : 2 ,
17+ "no-loop-func" : 2 ,
18+ "no-new" : 2 ,
19+ "no-param-reassign" : 2 ,
20+ "no-return-assign" : 2 ,
21+ "no-unused-expressions" : 2 ,
22+ "no-use-before-define" : 2 ,
23+ "radix" : [2 , " always" ],
24+ "indent" : [2 , 2 ],
25+ "quotes" : [2 , " double" ],
26+ "semi" : [2 , " always" ]
27+ }
28+ }
Original file line number Diff line number Diff line change 11/. *
22! /.gitignore
3- ! /.jscsrc
4- ! /.jshintrc
3+ ! /.eslintrc.json
54! /.travis.yml
65/bower_components /
76/node_modules /
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22 "private" : true ,
33 "scripts" : {
44 "clean" : " rimraf output && rimraf .pulp-cache" ,
5- "build" : " jshint src && jscs src && pulp build --censor-lib --strict" ,
5+ "build" : " eslint src && pulp build -- --censor-lib --strict" ,
66 "test" : " pulp test"
77 },
88 "devDependencies" : {
9- "jscs" : " ^3.0.7" ,
10- "jshint" : " ^2.9.4" ,
9+ "eslint" : " ^3.19.0" ,
1110 "pulp" : " ^11.0.0" ,
1211 "purescript-psa" : " ^0.5.0" ,
1312 "purescript" : " ^0.11.1" ,
You can’t perform that action at this time.
0 commit comments