We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-unused-vars
1 parent 0fa1631 commit 52f455cCopy full SHA for 52f455c
packages/eslint/src/disabledRules.ts
@@ -12,13 +12,20 @@ export const disabledRules = {
12
'@typescript-eslint/no-unused-vars': [
13
0,
14
{
15
- args: 'all',
+ args: 'after-used',
16
+ // Not included in default options
17
argsIgnorePattern: '^_',
18
caughtErrors: 'all',
19
20
caughtErrorsIgnorePattern: '^_',
21
22
destructuredArrayIgnorePattern: '^_',
23
+ ignoreClassWithStaticInitBlock: false,
24
+ ignoreRestSiblings: false,
25
+ reportUsedIgnorePattern: false,
26
+ vars: 'all',
27
28
varsIgnorePattern: '^_',
- ignoreRestSiblings: true,
29
},
30
],
31
'@typescript-eslint/ban-ts-comment': [
0 commit comments