File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 34
34
"no-console": [
35
35
"error"
36
36
],
37
+ "no-var": [
38
+ "error"
39
+ ],
40
+ "prefer-const": ["error", {
41
+ "destructuring": "any",
42
+ "ignoreReadBeforeAssign": false
43
+ }],
37
44
"no-unused-vars": [
38
45
"error",
39
46
{
Original file line number Diff line number Diff line change 38
38
"pretest" : " ./node_modules/.bin/eslint lib test index.js" ,
39
39
"test" : " NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'" ,
40
40
"test-debug" : " NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'test/**/*_test.js'" ,
41
- "test:coverage" : " NODE_ENV=test nyc --reporter=html --reporter=text ./node_modules/.bin/mocha 'test/**/*_test.js'"
41
+ "test:coverage" : " NODE_ENV=test nyc --reporter=html --reporter=text ./node_modules/.bin/mocha 'test/**/*_test.js'" ,
42
+ "lint" : " npx eslint ." ,
43
+ "lint:fix" : " npx eslint . --fix"
42
44
},
43
45
"repository" : {
44
46
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments