Skip to content

Commit da76daf

Browse files
committed
Update deps
1 parent 822616f commit da76daf

File tree

4 files changed

+594
-787
lines changed

4 files changed

+594
-787
lines changed

.eslintrc.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ rules:
143143
import/dynamic-import-chunkname: off
144144

145145
##############################################################################
146-
# ESLint builtin rules list based on `v7.10.x`
146+
# ESLint builtin rules list based on `v7.11.x`
147147
##############################################################################
148148

149149
# Possible Errors
@@ -504,7 +504,7 @@ overrides:
504504
- plugin:import/typescript
505505
rules:
506506
##########################################################################
507-
# `@typescript-eslint/eslint-plugin` rule list based on `v4.3.x`
507+
# `@typescript-eslint/eslint-plugin` rule list based on `v4.4.x`
508508
##########################################################################
509509

510510
# Supported Rules
@@ -515,7 +515,8 @@ overrides:
515515
'@typescript-eslint/ban-ts-comment': [error, { 'ts-expect-error': false }]
516516
'@typescript-eslint/ban-tslint-comment': error
517517
'@typescript-eslint/ban-types': error
518-
'@typescript-eslint/class-literal-property-style': off
518+
'@typescript-eslint/class-literal-property-style': off # TODO enable after TS conversion
519+
'@typescript-eslint/consistent-indexed-object-style': off # TODO enable after TS conversion
519520
'@typescript-eslint/consistent-type-assertions':
520521
[error, { assertionStyle: as, objectLiteralTypeAssertions: never }]
521522
'@typescript-eslint/consistent-type-definitions': off # TODO consider
@@ -638,6 +639,7 @@ overrides:
638639
'@typescript-eslint/init-declarations': off
639640
'@typescript-eslint/no-magic-numbers': off
640641
'@typescript-eslint/no-use-before-define': off
642+
'@typescript-eslint/no-duplicate-imports': off # Superseded by `import/no-duplicates`
641643

642644
# Bellow rules are disabled because coflicts with Prettier, see:
643645
# https://github.com/prettier/eslint-config-prettier/blob/master/%40typescript-eslint.js

.flowconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ experimental.const_params=true
3939
include_warnings=true
4040

4141
[version]
42-
^0.135.0
42+
^0.136.0

0 commit comments

Comments
 (0)