Skip to content

Commit

Permalink
fix(eslint-plugin): disable base no-unused-expressions in all config
Browse files Browse the repository at this point in the history
  • Loading branch information
bradzacher committed Nov 12, 2019
1 parent 1bb4d63 commit ecb3f4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/eslint-plugin/src/configs/all.json
Expand Up @@ -52,6 +52,7 @@
"@typescript-eslint/no-unnecessary-type-arguments": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-untyped-public-signature": "error",
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-expressions": "error",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
Expand Down
1 change: 1 addition & 0 deletions packages/eslint-plugin/tools/generate-configs.ts
Expand Up @@ -31,6 +31,7 @@ const BASE_RULES_TO_BE_OVERRIDDEN = new Set([
'no-extra-parens',
'no-magic-numbers',
'quotes',
'no-unused-expressions',
'no-unused-vars',
'no-use-before-define',
'no-useless-constructor',
Expand Down

0 comments on commit ecb3f4e

Please sign in to comment.