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 97e57af commit d2159e8Copy full SHA for d2159e8
eslint.config.js
@@ -34,7 +34,13 @@ export default [
34
"@typescript-eslint/no-explicit-any": "off",
35
"@typescript-eslint/no-unused-vars": [
36
"error",
37
- { ignoreRestSiblings: true, varsIgnorePattern: "^_" },
+ {
38
+ ignoreRestSiblings: true,
39
+ argsIgnorePattern: "^_",
40
+ varsIgnorePattern: "^_",
41
+ caughtErrorsIgnorePattern: "^_",
42
+ destructuredArrayIgnorePattern: "^_",
43
+ },
44
],
45
},
46
0 commit comments