Skip to content

Commit b072a46

Browse files
committed
Disable 'no-unused-vars' when they start with an underscore
1 parent b93fea0 commit b072a46

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.eslintrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@
3131
],
3232
"@typescript-eslint/no-non-null-assertion": [
3333
"off"
34+
],
35+
"@typescript-eslint/no-unused-vars": [
36+
"error",
37+
{
38+
"argsIgnorePattern": "^_"
39+
}
3440
]
3541
}
3642
}

0 commit comments

Comments
 (0)