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.
1 parent e483a65 commit 71e2434Copy full SHA for 71e2434
1 file changed
.eslintrc
@@ -26,6 +26,15 @@
26
],
27
"no-redeclare": "off",
28
"import/no-anonymous-default-export": "off",
29
- "@typescript-eslint/no-redeclare": ["error"]
+ "@typescript-eslint/no-redeclare": ["error"],
30
+ "no-unused-vars": "off",
31
+ "@typescript-eslint/no-unused-vars": [
32
+ "warn", // or "error"
33
+ {
34
+ "argsIgnorePattern": "^_",
35
+ "varsIgnorePattern": "^_",
36
+ "caughtErrorsIgnorePattern": "^_"
37
+ }
38
+ ]
39
}
40
0 commit comments