Skip to content

Commit

Permalink
fix(eslint-plugin): add no-unsafe-unary-minus, prefer-destructuring t…
Browse files Browse the repository at this point in the history
…o disable-type-checked (#8038)

fix: add no-unsafe-unary-minus, prefer-destructuring to disable-type-checked
  • Loading branch information
JoshuaKGoldberg committed Dec 7, 2023
1 parent ee158a6 commit 431cd15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/configs/all.ts
Expand Up @@ -143,9 +143,9 @@ export = {
'@typescript-eslint/padding-line-between-statements': 'error',
'@typescript-eslint/parameter-properties': 'error',
'@typescript-eslint/prefer-as-const': 'error',
'@typescript-eslint/prefer-enum-initializers': 'error',
'prefer-destructuring': 'off',
'@typescript-eslint/prefer-destructuring': 'error',
'@typescript-eslint/prefer-enum-initializers': 'error',
'@typescript-eslint/prefer-for-of': 'error',
'@typescript-eslint/prefer-function-type': 'error',
'@typescript-eslint/prefer-includes': 'error',
Expand Down
2 changes: 2 additions & 0 deletions packages/eslint-plugin/src/configs/disable-type-checked.ts
Expand Up @@ -34,7 +34,9 @@ export = {
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-unary-minus': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/prefer-destructuring': 'off',
'@typescript-eslint/prefer-includes': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/prefer-optional-chain': 'off',
Expand Down

0 comments on commit 431cd15

Please sign in to comment.