Skip to content

Commit

Permalink
Update deps (#2678)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Jun 29, 2020
1 parent 2fbdcff commit 1e1d75e
Show file tree
Hide file tree
Showing 4 changed files with 923 additions and 1,048 deletions.
12 changes: 8 additions & 4 deletions .eslintrc.yml
Expand Up @@ -74,7 +74,7 @@ rules:
flowtype/union-intersection-spacing: off

##############################################################################
# `eslint-plugin-istanbul` rule list based on `v0.1.1`
# `eslint-plugin-istanbul` rule list based on `v0.1.2`
# https://github.com/istanbuljs/eslint-plugin-istanbul#rules
##############################################################################

Expand Down Expand Up @@ -134,7 +134,7 @@ rules:
node/prefer-promises/fs: off

##############################################################################
# `eslint-plugin-import` rule list based on `v2.21.x`
# `eslint-plugin-import` rule list based on `v2.22.x`
##############################################################################

# Static analysis
Expand Down Expand Up @@ -195,7 +195,7 @@ rules:
import/dynamic-import-chunkname: off

##############################################################################
# ESLint builtin rules list based on `v7.2.x`
# ESLint builtin rules list based on `v7.3.x`
##############################################################################

# Possible Errors
Expand Down Expand Up @@ -227,12 +227,14 @@ rules:
no-loss-of-precision: error
no-misleading-character-class: error
no-obj-calls: error
no-promise-executor-return: off # TODO
no-prototype-builtins: error
no-regex-spaces: error
no-setter-return: error
no-sparse-arrays: error
no-template-curly-in-string: error
no-unreachable: error
no-unreachable-loop: error
no-unsafe-finally: error
no-unsafe-negation: error
no-useless-backreference: error
Expand Down Expand Up @@ -501,7 +503,7 @@ overrides:
flowtype/no-types-missing-file-annotation: off

##########################################################################
# `@typescript-eslint/eslint-plugin` rule list based on `v3.3.x`
# `@typescript-eslint/eslint-plugin` rule list based on `v3.4.x`
##########################################################################

# Supported Rules
Expand Down Expand Up @@ -593,6 +595,7 @@ overrides:
no-dupe-class-members: off
no-empty-function: off
no-invalid-this: off
no-loss-of-precision: off
no-unused-expressions: off
no-unused-vars: off
no-useless-constructor: off
Expand All @@ -606,6 +609,7 @@ overrides:
'@typescript-eslint/no-dupe-class-members': error
'@typescript-eslint/no-empty-function': error
'@typescript-eslint/no-invalid-this': error
'@typescript-eslint/no-loss-of-precision': error
'@typescript-eslint/no-unused-expressions': error
'@typescript-eslint/no-unused-vars':
[error, { vars: all, args: all, argsIgnorePattern: '^_' }]
Expand Down
8 changes: 7 additions & 1 deletion .flowconfig
Expand Up @@ -29,6 +29,12 @@ implicit-inexact-object=error
ambiguous-object-type=error
uninitialized-instance-property=error
unsafe-addition=error
default-import-access=error
invalid-import-star-use=error
non-const-var-export=error
this-in-exported-function=error
mixed-import-and-require=error
export-renamed-default=error

[options]
include_warnings=true
Expand All @@ -37,4 +43,4 @@ babel_loose_array_spread=true
esproposal.optional_chaining=enable

[version]
^0.127.0
^0.128.0

0 comments on commit 1e1d75e

Please sign in to comment.