Skip to content

Commit efdfd38

Browse files
committed
Override typescript lint to allow unused underscore args
1 parent 9298793 commit efdfd38

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
},
1616
"plugins": ["@typescript-eslint"],
1717
"rules": {
18-
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
18+
"@typescript-eslint/no-unused-vars": [
19+
"error",
20+
{ "argsIgnorePattern": "^_" }
21+
],
1922
"indent": ["error", 2],
2023
"linebreak-style": ["error", "unix"],
2124
"quotes": ["error", "single"],

0 commit comments

Comments
 (0)