Skip to content

Commit

Permalink
feat: Tighten rule for exception handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
goloroden committed Sep 21, 2020
1 parent a0eda26 commit 08357ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,9 @@ const overrides = [
ignoreVoid: false
}],
'@typescript-eslint/no-for-in-array': 'error',
'@typescript-eslint/no-implicit-any-catch': 'error',
'@typescript-eslint/no-implicit-any-catch': [ 'error', {
allowExplicitAny: false
}],
'@typescript-eslint/no-implied-eval': 'error',
'@typescript-eslint/no-inferrable-types': [ 'error', {
ignoreParameters: false,
Expand Down

0 comments on commit 08357ab

Please sign in to comment.