account/.eslintrc.json
Jonathan Barrow f447d44921 Total rewrite
Rewrote the whole server because the old version was a broken, spaghetti filled monster of a mess
2020-02-16 20:33:53 -05:00

43 lines
612 B
JSON

{
"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"
]
}
}