30 lines
581 B
JSON
30 lines
581 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"commonjs": true,
|
||
|
"es6": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": "eslint:recommended",
|
||
|
"globals": {
|
||
|
"Atomics": "readonly",
|
||
|
"SharedArrayBuffer": "readonly"
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2018
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-console": 0,
|
||
|
"quotes": ["error", "single"],
|
||
|
"comma-dangle": [
|
||
|
"error",
|
||
|
{
|
||
|
"arrays": "always-multiline",
|
||
|
"objects": "always-multiline",
|
||
|
"imports": "always-multiline",
|
||
|
"exports": "always-multiline",
|
||
|
"functions": "ignore"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|