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 740cf35 commit ade4f2bCopy full SHA for ade4f2b
1 file changed
.eslintrc.js
@@ -13,6 +13,10 @@ module.exports = {
13
"@typescript-eslint/no-non-null-assertion": "off",
14
"@typescript-eslint/ban-ts-comment": "off",
15
"@typescript-eslint/explicit-module-boundary-types": "off",
16
- "@typescript-eslint/no-empty-function": "off"
+ "@typescript-eslint/no-empty-function": "off",
17
+ "@typescript-eslint/no-unused-vars": ["warn", {
18
+ "argsIgnorePattern": "^_",
19
+ "varsIgnorePattern": "^_"
20
+ }]
21
}
22
};
0 commit comments