mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-24 16:17:55 -05:00
29 lines
851 B
Text
29 lines
851 B
Text
{
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"strict": 0,
|
|
"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"],
|
|
"brace-style": [2, "1tbs", { "allowSingleLine": false }]
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"globals": {
|
|
"AndroidInterface": true,
|
|
"window": true,
|
|
"WebKitCSSMatrix": true,
|
|
"webkitAudioContext": true,
|
|
"require": true
|
|
},
|
|
"extends": "eslint:recommended"
|
|
}
|