-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.eslintrc
56 lines (56 loc) · 1.26 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
{ "env":
{ "node": true
, "browser": true
}
, "globals":
{ "MiniGrace": false
, "minigrace": false
}
, "rules":
{ "no-extra-parens": 2
, "block-scoped-var": 2
, "dot-notation": [ 2, { "allowKeywords": false } ]
, "guard-for-in": 2
, "no-alert": 0
, "default-case": 2
, "no-div-regex": 2
, "no-else-return": 2
, "no-eq-null": 2
, "no-floating-decimal": 2
, "no-process-env": 2
, "no-self-compare": 2
, "no-void": 2
, "radix": 2
, "vars-on-top": 2
, "wrap-iife": 2
, "no-catch-shadow": 2
, "no-path-concat": 0
, "no-process-exit": 0
, "indent": [2, 2]
, "brace-style": 2
, "camelcase": 0
, "comma-spacing": 2
, "comma-style": 2
, "consistent-this": [ 2, "self" ]
, "eol-last": 2
, "func-style": [ 2, "declaration" ]
, "no-lonely-if": 2
, "one-var": 2
, "quotes": [ 2, "double", "avoid-escape" ]
, "quote-props": 2
, "sort-vars": 2
, "space-after-keywords": 2
, "space-before-blocks": 2
, "space-before-function-parentheses": [ 2,
{ "anonymous": "always"
, "named": "never"
} ]
, "space-in-brackets": [ 2, "always", { "propertyName": false } ]
, "space-in-parens": 2
, "spaced-line-comment": 2
, "space-unary-ops": 2
, "max-len": [ 2, 80 ]
, "no-bitwise": 2
, "no-plusplus": 2
}
}