-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc
41 lines (40 loc) · 1.11 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
{
"env": {
"node": true,
"browser": true
},
"rules": {
"array-bracket-spacing": 2,
"computed-property-spacing": 2,
"consistent-this": [2, "self"],
"guard-for-in": 2,
"handle-callback-err": 2,
"indent" : 2,
"keyword-spacing": 2,
"no-catch-shadow": 2,
"no-else-return": 2,
"no-floating-decimal": 2,
"no-inline-comments": 1,
"no-lonely-if": 2,
"no-multiple-empty-lines": 2,
"no-nested-ternary": 2,
"no-self-compare": 2,
"no-sync": 1,
"no-throw-literal": 2,
"no-underscore-dangle" : 0,
"no-unused-expressions" : 1,
"no-unused-vars" : [ 2, { "args" : "none" } ],
"no-void": 2,
"no-warning-comments": 1,
"object-curly-spacing": 2,
"padded-blocks" : [ 2, "never"],
"quotes" : [ 2,"single"],
"radix": 2,
"space-before-function-paren" : [ 2, "always"],
"spaced-comment": [2, "always"],
"valid-jsdoc": [2],
"vars-on-top": 2,
"wrap-iife" : 2,
"wrap-regex": 2
}
}