-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc
63 lines (63 loc) · 1.3 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"rules": {
"brace-style": 0,
"radix": 2,
"no-eq-null": 0,
"quotes": 0,
"no-else-return": 0,
"block-scoped-var": 2,
"no-lonely-if": 0,
"comma-style": 0,
"comma-spacing": 0,
"eol-last": 0,
"space-infix-ops": 0,
"no-nested-ternary": 1,
"curly": 0,
"camelcase": 0,
"no-undefined": 0,
"no-multi-spaces": 0,
"wrap-iife": [
2,
"inside"
],
"generator-star": 0,
"no-div-regex": 1,
"strict": 0,
"space-after-keywords": 0,
"no-reserved-keys": 0,
"no-process-exit": 0,
"no-new-require": 2,
"no-mixed-requires": 0,
"no-debugger": 1,
"no-floating-decimal": 2,
"no-console": 0,
"space-before-blocks": 0,
"no-trailing-spaces": 2,
"no-wrap-func": 1,
"semi-spacing": 0,
"no-loop-func": 1,
"space-before-function-parentheses": 0,
"no-extra-parens": 0,
"space-return-throw-case": 0,
"no-path-concat": 2,
"semi": 0,
"global-strict": 0,
"new-cap": 0,
"no-catch-shadow": 2,
"handle-callback-err": 0,
"no-mixed-spaces-and-tabs": [
2,
"smart-tabs"
],
"eqeqeq": 2,
"key-spacing": 0,
"consistent-return": 0,
"no-underscore-dangle": 0,
"no-shadow": 0,
"dot-notation": 0
},
"env": {
"node": true,
"es6": true
}
}