Skip to content

Commit

Permalink
fix(eslint-plugin): [no-implicit-any-catch] disable recommended for now
Browse files Browse the repository at this point in the history
  • Loading branch information
phiresky committed Jun 11, 2020
1 parent 87287c2 commit 3912628
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/configs/recommended.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export = {
'no-empty-function': 'off',
'@typescript-eslint/no-empty-function': 'error',
'@typescript-eslint/no-empty-interface': 'error',
'@typescript-eslint/no-implicit-any-catch': 'warn',
'@typescript-eslint/no-implicit-any-catch': 'off',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-extra-non-null-assertion': 'error',
'no-extra-semi': 'off',
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/no-implicit-any-catch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default util.createRule<Options, MessageIds>({
docs: {
description: 'Disallow usage of the implicit `any` type in catch clauses',
category: 'Best Practices',
recommended: 'warn',
recommended: false,
suggestion: true,
},
fixable: 'code',
Expand Down

0 comments on commit 3912628

Please sign in to comment.