forked from rgrove/rawgit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
37 lines (36 loc) · 1.07 KB
/
.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
33
34
35
36
37
{
"env": {
"node": true
},
"rules": {
"comma-dangle": 0,
"comma-spacing": [2, {"before": false, "after": true}],
"consistent-return": 1,
"global-strict": 0,
"key-spacing": 0,
"new-cap": [1, {"capIsNew": false, "newIsCap": true}],
"no-alert": 1,
"no-eq-null": 1,
"no-fallthrough": 0,
"no-floating-decimal": 1,
"no-multi-spaces": 0,
"no-nested-ternary": 1,
"no-self-compare": 1,
"no-shadow": 1,
"no-throw-literal": 2,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-use-before-define": [2, "nofunc"],
"quotes": 0,
"radix": 2,
"semi-spacing": 0,
"space-after-keywords": [1, "always"],
"space-before-blocks": [1, "always"],
"space-before-function-parentheses": [1, {"anonymous": "always", "named": "never"}],
"space-in-brackets": [1, "never"],
"space-in-parens": [1, "never"],
"strict": 0,
"wrap-iife": [2, "any"],
"yoda": 0
}
}