Skip to content

Commit c99f63a

Browse files
authored
Merge pull request #35 from aligent/feature/TCS-8_add-report-used-ignore-pattern
TCS-8 Add Report used ignore pattern
2 parents a1c9a82 + f1981cd commit c99f63a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ const base = [
3030
'array-callback-return': ['error', { checkForEach: true }],
3131
'@typescript-eslint/no-unused-vars': [
3232
'error',
33-
{ argsIgnorePattern: '^_', ignoreRestSiblings: true },
33+
{
34+
argsIgnorePattern: '^_',
35+
ignoreRestSiblings: true,
36+
reportUsedIgnorePattern: true,
37+
},
3438
],
3539
'@typescript-eslint/array-type': [
3640
'error',

0 commit comments

Comments
 (0)