.eslintrc.json: Set parserOptions.ecmaVersion to 6

This means all code will be parsed as ES2015 by ESLint.

See #442.
redux
David Majda 8 years ago
parent 4a49e910ac
commit 5249814fc0

@ -1,5 +1,8 @@
{ {
"extends": "eslint:recommended", "extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6
},
"rules": { "rules": {
"no-control-regex": "off" "no-control-regex": "off"
} }

Loading…
Cancel
Save