mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 23:27:54 -05:00
2065bc91a4
Allows us to use the now-available es6 features without lint errors.
29 lines
742 B
Text
29 lines
742 B
Text
{
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"curly": [2, "multi-line"],
|
|
"eol-last": [2],
|
|
"indent": [2, 4],
|
|
"linebreak-style": [2, "unix"],
|
|
"max-len": [2, 120, 4],
|
|
"no-trailing-spaces": [2, { "skipBlankLines": true }],
|
|
"no-unused-vars": [2, {"args": "after-used", "varsIgnorePattern": "^_"}],
|
|
"quotes": [2, "single"],
|
|
"semi": [2, "always"],
|
|
"space-before-function-paren": [2, "always"],
|
|
"strict": [2, "never"]
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"formatMessage": true
|
|
},
|
|
"plugins": [
|
|
"react",
|
|
"json"
|
|
],
|
|
"extends": "eslint:recommended"
|
|
}
|