-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
31 lines (31 loc) · 885 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 9
},
"rules": {
"brace-style": "error",
"no-tabs": ["error"],
"no-console": ["off"],
"no-fallthrough": ["off"],
"no-constant-condition": ["off"],
"no-var": ["error"],
"curly": ["error", "all"],
"object-curly-spacing": ["error", "never"],
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}],
"quotes": ["error", "single", {"avoidEscape": true}],
"linebreak-style": ["error", "unix"],
"strict": ["error", "global"],
"semi": ["error", "always"],
"indent": ["error", 4, {"SwitchCase": 1}]
}
}