Merge pull request #593 from williamboman/chore/eslint-es6-src
lint: default to ecmaVersion: 6, keep ecmaVersion: 5 for client/
This commit is contained in:
commit
4be6a6e462
@ -7,6 +7,9 @@ env:
|
||||
mocha: true
|
||||
node: true
|
||||
|
||||
parserOptions:
|
||||
ecmaVersion: 6
|
||||
|
||||
rules:
|
||||
block-spacing: [2, always]
|
||||
brace-style: [2, 1tbs]
|
||||
|
@ -24,7 +24,9 @@
|
||||
"test": "npm-run-all -c test:mocha lint",
|
||||
"test:mocha": "mocha -r test/fixtures/env.js test/**/*.js",
|
||||
"lint": "npm-run-all -c lint:js lint:css",
|
||||
"lint:js": "eslint .",
|
||||
"lint:js": "npm-run-all -c lint:js:es5 lint:js:es6",
|
||||
"lint:js:es5": "eslint --parser-options=\"ecmaVersion:5\" client/",
|
||||
"lint:js:es6": "eslint --ignore-pattern client/ .",
|
||||
"lint:css": "stylelint \"**/*.css\"",
|
||||
"prepublish": "npm run build"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user