File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 3434 "no-console": [
3535 "error"
3636 ],
37+ "no-var": [
38+ "error"
39+ ],
40+ "prefer-const": ["error", {
41+ "destructuring": "any",
42+ "ignoreReadBeforeAssign": false
43+ }],
3744 "no-unused-vars": [
3845 "error",
3946 {
Original file line number Diff line number Diff line change 3838 "pretest" : " ./node_modules/.bin/eslint lib test index.js" ,
3939 "test" : " NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'" ,
4040 "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"
4244 },
4345 "repository" : {
4446 "type" : " git" ,
You can’t perform that action at this time.
0 commit comments