-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
72 lines (70 loc) · 1.46 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
64
65
66
67
68
69
70
71
72
{
"env": {
"jasmine": true,
"node": true,
"mocha": true,
"browser": false,
"es6": false,
"builtin": true
},
"globals": {
"angular": true,
"d3": true
},
"rules": {
"array-bracket-spacing": [2, "never"],
"block-scoped-var": 2,
"brace-style": 2,
"camelcase": 0,
"comma-dangle": 2,
"curly": [2,"all"],
"dot-notation": 2,
"eol-last": 2,
"eqeqeq": 2,
"func-style": [2, "declaration"],
"guard-for-in": 2,
"new-cap": [
2,
{
"capIsNewExceptions": [
],
"newIsCapExceptions": [
]
}
],
"no-bitwise": 2,
"no-caller": 2,
"no-empty": 2,
"no-extend-native": 2,
"no-extra-parens": 2,
"no-extra-semi": 2,
"no-irregular-whitespace": 2,
"no-iterator": 0,
"no-mixed-spaces-and-tabs": 2,
"no-new": 0,
"no-redeclare": 0,
"no-sequences": 2,
"no-shadow": 2,
"no-throw-literal": 2,
"no-trailing-spaces": 2,
"no-undef": 2,
"no-underscore-dangle": 0,
"no-unneeded-ternary": 2,
"no-unused-vars": 2,
"no-use-before-define": 2,
"no-var": 0,
"no-with": 2,
"object-curly-spacing": 2,
"quotes": [2, "single"],
"space-after-keywords": 2,
"space-before-blocks": [2, "always"],
"space-before-function-paren": 2,
"space-in-parens": 2,
"space-infix-ops": 2,
"semi": 2,
"strict": [2, "global"],
"valid-typeof": 2,
"vars-on-top": 2,
"wrap-iife": 2
}
}