mirror of
https://github.com/PretendoNetwork/BOSS.git
synced 2026-04-25 15:46:06 -05:00
43 lines
612 B
Plaintext
43 lines
612 B
Plaintext
{
|
|
"env": {
|
|
"node": true,
|
|
"commonjs": true,
|
|
"es6": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020
|
|
},
|
|
"globals": {
|
|
"BigInt": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"require-atomic-updates": "warn",
|
|
"no-case-declarations": "off",
|
|
"no-empty": "off",
|
|
"no-console": "off",
|
|
"linebreak-style": "off",
|
|
"no-global-assign": "off",
|
|
"prefer-const": "error",
|
|
"no-var": "error",
|
|
"one-var": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"indent": [
|
|
"error",
|
|
"tab",
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
]
|
|
}
|
|
} |