-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
92 lines (92 loc) · 2.08 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"env": {
"jasmine": true,
"browser": true,
"node": true,
"jquery": true
},
"globals": {
"escape": false,
"unescape": false,
"loadFixtures": false,
"loadStyleFixtures": false,
"cleanUp": false
},
"rules": {
"no-undef": 2,
"eqeqeq": 0,
"no-underscore-dangle": 0,
"no-unused-expressions": 1,
"quotes": 0,
"no-mixed-spaces-and-tabs": [1, "smart-tabs"],
"no-caller": 0,
"no-eval": 2,
"no-return-assign": 0,
"new-parens": 1,
"no-cond-assign": 0,
"new-cap": 1,
"yoda": 0,
"dot-notation": 0,
"camelcase": 1,
"no-use-before-define": 0,
"no-unused-vars": [0, {
"vars": "local",
"args": "after-used"
}],
"no-new": 0,
"no-extra-boolean-cast": 0,
"consistent-this": [1, "self"],
"func-style": [1, "expression"],
"no-lonely-if": 1,
"no-spaced-func": 1,
"no-trailing-spaces": 1,
"no-extra-parents": 0,
"semi": [1, "always"],
"object-curly-spacing": [1, "never"],
"array-bracket-spacing": [1, "never"],
"computed-property-spacing": [1, "never"],
"space-infix-ops": 1,
"space-return-throw-case": 1,
"space-unary-ops": 1,
"max-nested-callbacks": [1, 3],
"semi-spacing": [2, {
"before": false,
"after": true
}],
"comma-spacing": [2, {
"before": false,
"after": true
}],
"no-multi-spaces": 1,
"no-console": 0,
"no-shadow": 0,
"no-constant-condition": 1,
"comma-dangle": 2,
"no-debugger": 2,
"no-dupe-keys": 2,
"no-empty": 0,
"no-ex-assign": 2,
"no-extra-semi": 1,
"no-func-assign": 1,
"no-negated-in-lhs": 2,
"no-obj-calls": 1,
"no-sparse-arrays": 2,
"no-unreachable": 2,
"use-isnan": 2,
"valid-typeof": 2,
"consistent-return": 2,
"no-fallthrough": 2,
"guard-for-in": 2,
"no-alert": 0,
"no-empty-label": 2,
"no-eq-null": 2,
"no-extend-native": 2,
"no-implied-eval": 2,
"no-lone-blocks": 2,
"no-loop-func": 0,
"no-native-reassign": 2,
"no-new-func": 2,
"no-self-compare": 2,
"strict": 0
}
}