-
Notifications
You must be signed in to change notification settings - Fork 1
/
eslint.json
127 lines (123 loc) · 4.43 KB
/
eslint.json
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"env": {
"browser" : true,
"node" : false,
"amd" : true
},
"globals": {
"define": false,
"require": false,
"expect": false,
"after": false,
"before": false,
"describe": false,
"expect": false,
"it": false,
"mocha": false,
"chai": false,
"sinon": false,
"sinonChai": false,
"pending": false,
"spyOn": false,
"waits": false,
"waitsFor": false,
"xdescribe": false,
"xit": false,
"beforeAll": false,
"afterAll": false,
"runs": false
},
"rules": {
"no-cond-assign" : 1,
"no-console" : 1,
"no-comma-dangle" : 1,
"no-underscore-dangle" : 0,
"no-control-regex" : 1,
"no-debugger" : 1,
"no-dupe-keys" : 1,
"no-empty" : 1,
"no-empty-class" : 1,
"no-ex-assign" : 1,
"no-extra-parens" : 0,
"no-extra-semi" : 1,
"no-func-assign" : 0,
"no-invalid-regexp" : 1,
"no-negated-in-lhs" : 0,
"no-obj-calls" : 1,
"no-unreachable" : 1,
"use-isnan" : 1,
"block-scoped-var" : 0,
"complexity" : 0,
"curly" : 1,
"dot-notation" : 0,
"eqeqeq" : 1,
"guard-for-in" : 1,
"no-alert" : 1,
"no-caller" : 1,
"no-eval" : 1,
"no-extend-native" : 0,
"no-floating-decimal" : 1,
"no-native-reassign" : 1,
"no-new" : 1,
"no-new-func" : 1,
"no-octal" : 0,
"no-octal-escape" : 0,
"no-with" : 1,
"no-return-assign" : 1,
"no-self-compare" : 1,
"no-eq-null" : 1,
"no-multi-str" : 0,
"no-loop-func" : 1,
"no-empty-label" : 1,
"no-unused-expressions" : 1,
"no-script-url" : 1,
"no-proto" : 1,
"no-iterator" : 1,
"no-else-return" : 1,
"no-redeclare" : 1,
"no-div-regex" : 1,
"wrap-iife" : 1,
"global-strict" : 1,
"no-extra-strict" : 1,
"strict" : 1,
"no-catch-shadow" : 1,
"no-delete-var" : 1,
"no-label-var" : 1,
"no-shadow" : 1,
"no-shadow-restricted-names" : 1,
"no-undef" : 1,
"no-undef-init" : 1,
"no-unused-vars" : 1,
"no-use-before-define" : 1,
"no-shadow" : 1,
"no-multi-spaces" : 1,
"brace-style" : 1,
"camelcase" : 1,
"consistent-this" : 0,
"func-style" : [1, "expression"],
"new-cap" : 0,
"new-parens" : 1,
"no-mixed-requires" : 0,
"no-nested-ternary" : 1,
"no-spaced-func" : 1,
"no-ternary" : 0,
"no-wrap-func" : 1,
"quotes" : [1, "single"],
"quote-props" : 0,
"semi" : 1,
"sort-vars" : 0,
"space-infix-ops" : 1,
"space-return-throw-case" : 1,
"space-unary-ops" : 1,
"max-nested-callbacks" : 0,
"one-var" : 1,
"wrap-regex" : 0,
"max-depth" : 0,
"max-len" : [1, 100, 4],
"max-params" : 0,
"max-statements" : 0,
"no-bitwise" : 0,
"no-plusplus" : 0,
"no-trailing-spaces" : 0
}
}