We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e0540 commit 037ccf6Copy full SHA for 037ccf6
.eslintrc.js
@@ -4,12 +4,9 @@ module.exports = {
4
plugins: ["@typescript-eslint"],
5
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
6
rules: {
7
- "@typescript-eslint/no-unused-vars": [
8
- 2,
9
- { args: "all", argsIgnorePattern: "^_" },
10
- ],
11
"@typescript-eslint/no-explicit-any": "off",
12
"@typescript-eslint/ban-ts-comment": "off",
13
- "@typescript-eslint/no-var-requires": "off"
+ "@typescript-eslint/no-var-requires": "off",
+ "@typescript-eslint/no-unused-vars": "off"
14
},
15
};
0 commit comments