74
74
flowtype/union-intersection-spacing : off
75
75
76
76
# #############################################################################
77
- # `eslint-plugin-istanbul` rule list based on `v0.1.1 `
77
+ # `eslint-plugin-istanbul` rule list based on `v0.1.2 `
78
78
# https://github.com/istanbuljs/eslint-plugin-istanbul#rules
79
79
# #############################################################################
80
80
@@ -134,7 +134,7 @@ rules:
134
134
node/prefer-promises/fs : off
135
135
136
136
# #############################################################################
137
- # `eslint-plugin-import` rule list based on `v2.21 .x`
137
+ # `eslint-plugin-import` rule list based on `v2.22 .x`
138
138
# #############################################################################
139
139
140
140
# Static analysis
@@ -195,7 +195,7 @@ rules:
195
195
import/dynamic-import-chunkname : off
196
196
197
197
# #############################################################################
198
- # ESLint builtin rules list based on `v7.2 .x`
198
+ # ESLint builtin rules list based on `v7.3 .x`
199
199
# #############################################################################
200
200
201
201
# Possible Errors
@@ -227,12 +227,14 @@ rules:
227
227
no-loss-of-precision : error
228
228
no-misleading-character-class : error
229
229
no-obj-calls : error
230
+ no-promise-executor-return : off # TODO
230
231
no-prototype-builtins : error
231
232
no-regex-spaces : error
232
233
no-setter-return : error
233
234
no-sparse-arrays : error
234
235
no-template-curly-in-string : error
235
236
no-unreachable : error
237
+ no-unreachable-loop : error
236
238
no-unsafe-finally : error
237
239
no-unsafe-negation : error
238
240
no-useless-backreference : error
@@ -501,7 +503,7 @@ overrides:
501
503
flowtype/no-types-missing-file-annotation : off
502
504
503
505
# #########################################################################
504
- # `@typescript-eslint/eslint-plugin` rule list based on `v3.3 .x`
506
+ # `@typescript-eslint/eslint-plugin` rule list based on `v3.4 .x`
505
507
# #########################################################################
506
508
507
509
# Supported Rules
@@ -593,6 +595,7 @@ overrides:
593
595
no-dupe-class-members : off
594
596
no-empty-function : off
595
597
no-invalid-this : off
598
+ no-loss-of-precision : off
596
599
no-unused-expressions : off
597
600
no-unused-vars : off
598
601
no-useless-constructor : off
@@ -606,6 +609,7 @@ overrides:
606
609
' @typescript-eslint/no-dupe-class-members ' : error
607
610
' @typescript-eslint/no-empty-function ' : error
608
611
' @typescript-eslint/no-invalid-this ' : error
612
+ ' @typescript-eslint/no-loss-of-precision ' : error
609
613
' @typescript-eslint/no-unused-expressions ' : error
610
614
' @typescript-eslint/no-unused-vars ' :
611
615
[error, { vars : all, args: all, argsIgnorePattern: '^_' }]
0 commit comments