Skip to content

Commit 1e1d75e

Browse files
Update deps (#2678)
1 parent 2fbdcff commit 1e1d75e

File tree

4 files changed

+923
-1048
lines changed

4 files changed

+923
-1048
lines changed

.eslintrc.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ rules:
7474
flowtype/union-intersection-spacing: off
7575

7676
##############################################################################
77-
# `eslint-plugin-istanbul` rule list based on `v0.1.1`
77+
# `eslint-plugin-istanbul` rule list based on `v0.1.2`
7878
# https://github.com/istanbuljs/eslint-plugin-istanbul#rules
7979
##############################################################################
8080

@@ -134,7 +134,7 @@ rules:
134134
node/prefer-promises/fs: off
135135

136136
##############################################################################
137-
# `eslint-plugin-import` rule list based on `v2.21.x`
137+
# `eslint-plugin-import` rule list based on `v2.22.x`
138138
##############################################################################
139139

140140
# Static analysis
@@ -195,7 +195,7 @@ rules:
195195
import/dynamic-import-chunkname: off
196196

197197
##############################################################################
198-
# ESLint builtin rules list based on `v7.2.x`
198+
# ESLint builtin rules list based on `v7.3.x`
199199
##############################################################################
200200

201201
# Possible Errors
@@ -227,12 +227,14 @@ rules:
227227
no-loss-of-precision: error
228228
no-misleading-character-class: error
229229
no-obj-calls: error
230+
no-promise-executor-return: off # TODO
230231
no-prototype-builtins: error
231232
no-regex-spaces: error
232233
no-setter-return: error
233234
no-sparse-arrays: error
234235
no-template-curly-in-string: error
235236
no-unreachable: error
237+
no-unreachable-loop: error
236238
no-unsafe-finally: error
237239
no-unsafe-negation: error
238240
no-useless-backreference: error
@@ -501,7 +503,7 @@ overrides:
501503
flowtype/no-types-missing-file-annotation: off
502504

503505
##########################################################################
504-
# `@typescript-eslint/eslint-plugin` rule list based on `v3.3.x`
506+
# `@typescript-eslint/eslint-plugin` rule list based on `v3.4.x`
505507
##########################################################################
506508

507509
# Supported Rules
@@ -593,6 +595,7 @@ overrides:
593595
no-dupe-class-members: off
594596
no-empty-function: off
595597
no-invalid-this: off
598+
no-loss-of-precision: off
596599
no-unused-expressions: off
597600
no-unused-vars: off
598601
no-useless-constructor: off
@@ -606,6 +609,7 @@ overrides:
606609
'@typescript-eslint/no-dupe-class-members': error
607610
'@typescript-eslint/no-empty-function': error
608611
'@typescript-eslint/no-invalid-this': error
612+
'@typescript-eslint/no-loss-of-precision': error
609613
'@typescript-eslint/no-unused-expressions': error
610614
'@typescript-eslint/no-unused-vars':
611615
[error, { vars: all, args: all, argsIgnorePattern: '^_' }]

.flowconfig

+7-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ implicit-inexact-object=error
2929
ambiguous-object-type=error
3030
uninitialized-instance-property=error
3131
unsafe-addition=error
32+
default-import-access=error
33+
invalid-import-star-use=error
34+
non-const-var-export=error
35+
this-in-exported-function=error
36+
mixed-import-and-require=error
37+
export-renamed-default=error
3238

3339
[options]
3440
include_warnings=true
@@ -37,4 +43,4 @@ babel_loose_array_spread=true
3743
esproposal.optional_chaining=enable
3844

3945
[version]
40-
^0.127.0
46+
^0.128.0

0 commit comments

Comments
 (0)