2020-04-15 15:48:16 +02:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"commonjs": true,
|
|
|
|
"es6": true,
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"globals": {
|
|
|
|
"Atomics": "readonly",
|
|
|
|
"SharedArrayBuffer": "readonly"
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
2021-03-01 16:34:43 +01:00
|
|
|
"ecmaVersion": 2018,
|
|
|
|
"sourceType": "module"
|
2020-04-15 15:48:16 +02:00
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-console": 0,
|
|
|
|
"quotes": ["error", "single"],
|
|
|
|
"comma-dangle": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"arrays": "always-multiline",
|
|
|
|
"objects": "always-multiline",
|
|
|
|
"imports": "always-multiline",
|
|
|
|
"exports": "always-multiline",
|
|
|
|
"functions": "ignore"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|