-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc
32 lines (29 loc) · 875 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
32
{
"env": {
"browser": true,
"node": true
},
"rules": {
"strict": 2,
"comma-dangle": [2, "never"],
"no-floating-decimal": 2,
"no-use-before-define": [2, "nofunc"],
"indent": [2, 2, {"indentSwitchCase": true}],
"brace-style": [2, "1tbs", {"allowSingleLine": true}],
"comma-style": [2, "last"],
"consistent-this": [2, "self"],
"consistent-return": 0,
"curly": [2, "multi-line"],
"new-cap": [2, {"newIsCap": true, "capIsNew": false}],
"no-shadow": 1,
"quote-props": [2, "as-needed"],
"quotes": [2, "single", "avoid-escape"],
"space-after-function-name": [2, "never"],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-in-brackets": [2, "never"],
"space-in-parens": [2, "never"],
"spaced-line-comment": [2, "always"],
"yoda": [2, "never"]
}
}