Skip to content

Commit b096328

Browse files
committed
1 parent 0e1a5a3 commit b096328

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.eslintrc.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,11 @@ rules:
207207

208208
## Disabled by eslint-config-prettier although added by eslint-config-standard
209209
arrow-spacing: 0
210-
block-spacing: 0
211210
comma-style: 0
212211
computed-property-spacing: 0
213212
dot-location: 0
214213
eol-last: 0
215214
generator-star-spacing: 0
216-
key-spacing: 0
217215
new-parens: 0
218216
no-floating-decimal: 0
219217
no-mixed-operators: 0
@@ -248,7 +246,6 @@ rules:
248246
implicit-arrow-linebreak: 0
249247
jsx-quotes: 0
250248
linebreak-style: 0
251-
lines-around-comment: 0
252249
max-len: 0
253250
newline-per-chained-call: 0
254251
no-confusing-arrow: 0
@@ -999,12 +996,15 @@ overrides:
999996
- caughtErrors: all
1000997

1001998
## Disabled by eslint-config-prettier
999+
block-spacing: 0
10021000
brace-style: 0
10031001
comma-dangle: 0
10041002
comma-spacing: 0
10051003
func-call-spacing: 0
10061004
indent: 0
1005+
key-spacing: 0
10071006
keyword-spacing: 0
1007+
lines-around-comment: 0
10081008
no-extra-parens: 0
10091009
no-extra-semi: 0
10101010
object-curly-spacing: 0
@@ -1097,12 +1097,15 @@ overrides:
10971097
'@typescript-eslint/no-unused-vars':
10981098
- 2
10991099
- caughtErrors: all
1100+
'@typescript-eslint/block-spacing': 0
11001101
'@typescript-eslint/brace-style': 0
11011102
'@typescript-eslint/comma-dangle': 0
11021103
'@typescript-eslint/comma-spacing': 0
11031104
'@typescript-eslint/func-call-spacing': 0
11041105
'@typescript-eslint/indent': 0
1106+
'@typescript-eslint/key-spacing': 0
11051107
'@typescript-eslint/keyword-spacing': 0
1108+
'@typescript-eslint/lines-around-comment': 0
11061109
'@typescript-eslint/no-extra-parens': 0
11071110
'@typescript-eslint/no-extra-semi': 0
11081111
'@typescript-eslint/object-curly-spacing': 0
@@ -1307,6 +1310,7 @@ overrides:
13071310
'@typescript-eslint/consistent-type-imports':
13081311
- 2
13091312
- fixStyle: inline-type-imports
1313+
'@typescript-eslint/no-import-type-side-effects': 2
13101314
'@typescript-eslint/no-require-imports': 2
13111315
'@typescript-eslint/no-var-requires': 2
13121316
'@typescript-eslint/no-useless-empty-export': 2
@@ -1362,6 +1366,7 @@ overrides:
13621366
'@typescript-eslint/prefer-enum-initializers': 2
13631367
'@typescript-eslint/prefer-literal-enum-member': 2
13641368
'@typescript-eslint/no-duplicate-enum-values': 2
1369+
'@typescript-eslint/no-mixed-enums': 2
13651370
'@typescript-eslint/no-unnecessary-qualifier': 2
13661371

13671372
## Readonly

0 commit comments

Comments
 (0)