@@ -144,7 +144,7 @@ rules:
144
144
import/dynamic-import-chunkname : off
145
145
146
146
# #############################################################################
147
- # ESLint builtin rules list based on `v7.3 .x`
147
+ # ESLint builtin rules list based on `v7.6 .x`
148
148
# #############################################################################
149
149
150
150
# Possible Errors
@@ -176,7 +176,7 @@ rules:
176
176
no-loss-of-precision : error
177
177
no-misleading-character-class : error
178
178
no-obj-calls : error
179
- no-promise-executor-return : error
179
+ no-promise-executor-return : off # TODO
180
180
no-prototype-builtins : error
181
181
no-regex-spaces : error
182
182
no-setter-return : error
@@ -299,7 +299,7 @@ rules:
299
299
func-name-matching : off
300
300
func-names : off
301
301
func-style : off
302
- id-blacklist : off
302
+ id-denylist : off
303
303
id-length : off
304
304
id-match : [error, '^(?:_?[a-zA-Z0-9]*)|[_A-Z0-9]+$']
305
305
line-comment-position : off
@@ -447,7 +447,7 @@ overrides:
447
447
node/no-unsupported-features/es-syntax : off
448
448
449
449
# #########################################################################
450
- # `@typescript-eslint/eslint-plugin` rule list based on `v3.5 .x`
450
+ # `@typescript-eslint/eslint-plugin` rule list based on `v3.9 .x`
451
451
# #########################################################################
452
452
453
453
# Supported Rules
@@ -504,9 +504,11 @@ overrides:
504
504
' @typescript-eslint/no-unused-vars-experimental ' : off
505
505
' @typescript-eslint/no-var-requires ' : error
506
506
' @typescript-eslint/prefer-as-const ' : off # TODO consider
507
+ ' @typescript-eslint/prefer-enum-initializers ' : off # TODO consider
507
508
' @typescript-eslint/prefer-for-of ' : off # TODO switch to error after TS migration
508
509
' @typescript-eslint/prefer-function-type ' : error
509
510
' @typescript-eslint/prefer-includes ' : off # TODO switch to error after IE11 drop
511
+ ' @typescript-eslint/prefer-literal-enum-member ' : error
510
512
' @typescript-eslint/prefer-namespace-keyword ' : error
511
513
' @typescript-eslint/prefer-nullish-coalescing ' : error
512
514
' @typescript-eslint/prefer-optional-chain ' : error
0 commit comments