-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.yml
235 lines (235 loc) · 4.93 KB
/
.eslintrc.yml
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
extends:
- eslint:recommended
plugins:
- '@typescript-eslint'
parserOptions:
project:
- ./tsconfig.json
- ./tests/tsconfig.json
ecmaVersion: 2017
sourceType: module
env:
es6: true
node: true
rules:
func-call-spacing:
- error
- never
no-unused-vars: error
require-atomic-updates: 'off'
eqeqeq: error
no-floating-decimal: error
no-var: error
no-implicit-coercion:
- error
- allow:
- '!!'
no-multi-spaces: error
no-useless-return: error
no-undef-init: error
no-trailing-spaces: error
no-unneeded-ternary: error
no-whitespace-before-property: error
nonblock-statement-body-position: error
space-infix-ops: error
space-unary-ops: error
switch-colon-spacing: error
arrow-body-style: error
arrow-spacing: error
generator-star-spacing: error
no-useless-computed-key: error
no-useless-rename: error
new-cap: error
no-lonely-if: error
no-console: 'off'
multiline-comment-style:
- error
- separate-lines
object-shorthand: error
prefer-const: error
prefer-spread: error
prefer-template: error
rest-spread-spacing: error
sort-imports: 'off'
template-curly-spacing: error
yield-star-spacing: error
yoda:
- error
- never
curly:
- error
- multi-line
- consistent
semi:
- error
- never
quotes:
- error
- single
- avoidEscape: true
dot-location:
- error
- property
array-bracket-spacing:
- error
- never
array-bracket-newline:
- error
- consistent
block-spacing:
- error
- always
brace-style:
- error
- 1tbs
comma-dangle:
- error
- always-multiline
comma-style:
- error
- last
computed-property-spacing:
- error
- never
function-paren-newline:
- error
- multiline
implicit-arrow-linebreak:
- error
- beside
indent:
- error
- 2
key-spacing:
- error
- afterColon: true
beforeColon: false
mode: strict
keyword-spacing:
- error
- before: true
after: true
line-comment-position:
- error
- above
linebreak-style:
- error
- unix
lines-between-class-members:
- error
- always
- exceptAfterSingleLine: true
no-multiple-empty-lines:
- error
- max: 2
no-empty:
- error
- allowEmptyCatch: true
object-curly-newline:
- error
- multiline: true
consistent: true
object-curly-spacing:
- error
- always
one-var-declaration-per-line:
- error
- initializations
padded-blocks:
- error
- never
quote-props:
- error
- as-needed
space-before-blocks:
- error
- always
space-before-function-paren:
- error
- never
space-in-parens:
- error
- never
spaced-comment:
- error
- always
arrow-parens:
- error
- as-needed
'@typescript-eslint/semi':
- error
- never
'@typescript-eslint/indent':
- error
- 2
'@typescript-eslint/explicit-function-return-type':
- error
- allowHigherOrderFunctions: true
allowExpressions: true
allowTypedFunctionExpressions: true
'@typescript-eslint/member-delimiter-style':
- error
- multiline:
delimiter: none
'@typescript-eslint/no-unused-vars': error
'@typescript-eslint/func-call-spacing':
- error
- never
'@typescript-eslint/ban-ts-comment': 'off'
'@typescript-eslint/explicit-member-accessibility':
- error
- overrides:
accessors: 'off'
constructors: 'off'
properties: no-public
overrides:
- files:
- '**/*.ts'
- '**/*.tsx'
extends:
- plugin:@typescript-eslint/recommended
- plugin:@typescript-eslint/recommended-requiring-type-checking
parser: '@typescript-eslint/parser'
parserOptions:
project:
- ./tsconfig.json
- ./tests/tsconfig.json
plugins:
- '@typescript-eslint'
rules:
'@typescript-eslint/no-unsafe-call': 'off'
'@typescript-eslint/no-unsafe-member-access': 'off'
'@typescript-eslint/no-unsafe-assignment': 'off'
new-cap:
- error
- capIsNew: false
'@typescript-eslint/no-floating-promises': error
semi: 'off'
'@typescript-eslint/semi':
- error
- never
indent: 'off'
'@typescript-eslint/indent':
- error
- 2
'@typescript-eslint/explicit-member-accessibility':
- error
- overrides:
accessors: 'off'
constructors: 'off'
properties: no-public
'@typescript-eslint/explicit-function-return-type':
- error
- allowHigherOrderFunctions: true
allowExpressions: true
allowTypedFunctionExpressions: true
'@typescript-eslint/member-delimiter-style':
- error
- multiline:
delimiter: none
no-unused-vars: 'off'
'@typescript-eslint/no-unused-vars': error
func-call-spacing: 'off'
'@typescript-eslint/func-call-spacing':
- error
- never