File tree 3 files changed +268
-173
lines changed
3 files changed +268
-173
lines changed Original file line number Diff line number Diff line change
1
+ node_modules /
Original file line number Diff line number Diff line change
1
+ {
2
+ "env" : {
3
+ "browser" : true ,
4
+ "es6" : true ,
5
+ "node" : true
6
+ },
7
+ "globals" : {
8
+ "Atomics" : true ,
9
+ "BigInt" : true
10
+ },
11
+ "extends" : " eslint:recommended" ,
12
+ "parserOptions" : {
13
+ "ecmaVersion" : 2018
14
+ },
15
+ "rules" : {
16
+ "indent" : [
17
+ " error" ,
18
+ 2
19
+ ],
20
+ "linebreak-style" : [
21
+ " error" ,
22
+ " unix"
23
+ ],
24
+ "quotes" : [
25
+ " error" ,
26
+ " single"
27
+ ],
28
+ "semi" : [
29
+ " error" ,
30
+ " always"
31
+ ],
32
+ "no-console" : " off" ,
33
+ "no-loop-func" : [
34
+ " error"
35
+ ],
36
+ "block-spacing" : [
37
+ " error" ,
38
+ " always"
39
+ ],
40
+ "camelcase" : [
41
+ " error"
42
+ ],
43
+ "eqeqeq" : [
44
+ " error" ,
45
+ " always"
46
+ ],
47
+ "strict" : [
48
+ " error" ,
49
+ " global"
50
+ ],
51
+ "brace-style" : [
52
+ " error" ,
53
+ " 1tbs" ,
54
+ {
55
+ "allowSingleLine" : true
56
+ }
57
+ ],
58
+ "comma-style" : [
59
+ " error" ,
60
+ " last"
61
+ ],
62
+ "comma-spacing" : [
63
+ " error" ,
64
+ {
65
+ "before" : false ,
66
+ "after" : true
67
+ }
68
+ ],
69
+ "eol-last" : [
70
+ " error"
71
+ ],
72
+ "func-call-spacing" : [
73
+ " error" ,
74
+ " never"
75
+ ],
76
+ "key-spacing" : [
77
+ " error" ,
78
+ {
79
+ "beforeColon" : false ,
80
+ "afterColon" : true ,
81
+ "mode" : " minimum"
82
+ }
83
+ ],
84
+ "keyword-spacing" : [
85
+ " error" ,
86
+ {
87
+ "before" : true ,
88
+ "after" : true ,
89
+ "overrides" : {
90
+ "function" : {
91
+ "after" : false
92
+ }
93
+ }
94
+ }
95
+ ],
96
+ "max-len" : [
97
+ " error" ,
98
+ {
99
+ "code" : 80 ,
100
+ "ignoreUrls" : true
101
+ }
102
+ ],
103
+ "max-nested-callbacks" : [
104
+ " error" ,
105
+ {
106
+ "max" : 7
107
+ }
108
+ ],
109
+ "new-cap" : [
110
+ " error" ,
111
+ {
112
+ "newIsCap" : true ,
113
+ "capIsNew" : false ,
114
+ "properties" : true
115
+ }
116
+ ],
117
+ "new-parens" : [
118
+ " error"
119
+ ],
120
+ "no-trailing-spaces" : [
121
+ " error"
122
+ ],
123
+ "no-unneeded-ternary" : [
124
+ " error"
125
+ ],
126
+ "no-whitespace-before-property" : [
127
+ " error"
128
+ ],
129
+ "object-curly-spacing" : [
130
+ " error" ,
131
+ " always"
132
+ ],
133
+ "operator-assignment" : [
134
+ " error" ,
135
+ " always"
136
+ ],
137
+ "operator-linebreak" : [
138
+ " error" ,
139
+ " after"
140
+ ],
141
+ "semi-spacing" : [
142
+ " error" ,
143
+ {
144
+ "before" : false ,
145
+ "after" : true
146
+ }
147
+ ],
148
+ "space-before-blocks" : [
149
+ " error" ,
150
+ " always"
151
+ ],
152
+ "space-before-function-paren" : [
153
+ " error" ,
154
+ {
155
+ "anonymous" : " always" ,
156
+ "named" : " never" ,
157
+ "asyncArrow" : " always"
158
+ }
159
+ ],
160
+ "space-in-parens" : [
161
+ " error" ,
162
+ " never"
163
+ ],
164
+ "space-infix-ops" : [
165
+ " error"
166
+ ],
167
+ "space-unary-ops" : [
168
+ " error" ,
169
+ {
170
+ "words" : true ,
171
+ "nonwords" : false ,
172
+ "overrides" : {
173
+ "typeof" : false
174
+ }
175
+ }
176
+ ],
177
+ "no-unreachable" : [
178
+ " error"
179
+ ],
180
+ "no-global-assign" : [
181
+ " error"
182
+ ],
183
+ "no-self-compare" : [
184
+ " error"
185
+ ],
186
+ "no-unmodified-loop-condition" : [
187
+ " error"
188
+ ],
189
+ "no-constant-condition" : [
190
+ " error" ,
191
+ {
192
+ "checkLoops" : false
193
+ }
194
+ ],
195
+ "no-console" : [
196
+ " off"
197
+ ],
198
+ "no-useless-concat" : [
199
+ " error"
200
+ ],
201
+ "no-useless-escape" : [
202
+ " error"
203
+ ],
204
+ "no-shadow-restricted-names" : [
205
+ " error"
206
+ ],
207
+ "no-use-before-define" : [
208
+ " error" ,
209
+ {
210
+ "functions" : false
211
+ }
212
+ ],
213
+ "arrow-parens" : [
214
+ " error" ,
215
+ " as-needed"
216
+ ],
217
+ "arrow-body-style" : [
218
+ " error" ,
219
+ " as-needed"
220
+ ],
221
+ "arrow-spacing" : [
222
+ " error"
223
+ ],
224
+ "no-confusing-arrow" : [
225
+ " error" ,
226
+ {
227
+ "allowParens" : true
228
+ }
229
+ ],
230
+ "no-useless-computed-key" : [
231
+ " error"
232
+ ],
233
+ "no-useless-rename" : [
234
+ " error"
235
+ ],
236
+ "no-var" : [
237
+ " error"
238
+ ],
239
+ "object-shorthand" : [
240
+ " error" ,
241
+ " always"
242
+ ],
243
+ "prefer-arrow-callback" : [
244
+ " error"
245
+ ],
246
+ "prefer-const" : [
247
+ " error"
248
+ ],
249
+ "prefer-numeric-literals" : [
250
+ " error"
251
+ ],
252
+ "prefer-rest-params" : [
253
+ " error"
254
+ ],
255
+ "prefer-spread" : [
256
+ " error"
257
+ ],
258
+ "rest-spread-spacing" : [
259
+ " error" ,
260
+ " never"
261
+ ],
262
+ "template-curly-spacing" : [
263
+ " error" ,
264
+ " never"
265
+ ]
266
+ }
267
+ }
You can’t perform that action at this time.
0 commit comments