disable eslint no-unused-vars for function args
This commit is contained in:
parent
9367a2178f
commit
1bb3cdae2f
@ -26,8 +26,10 @@ module.exports = {
|
|||||||
"@typescript-eslint/no-unsafe-assignment": "off",
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
||||||
"@typescript-eslint/no-unsafe-call": "off",
|
"@typescript-eslint/no-unsafe-call": "off",
|
||||||
"@typescript-eslint/no-unsafe-member-access": "off",
|
"@typescript-eslint/no-unsafe-member-access": "off",
|
||||||
"@typescript-eslint/no-unused-vars": "warn",
|
"@typescript-eslint/no-unused-vars": [
|
||||||
"@typescript-eslint/require-await": "warn",
|
"warn",
|
||||||
|
{ "vars": "all", "args": "none" }
|
||||||
|
],
|
||||||
"@typescript-eslint/restrict-template-expressions": "off",
|
"@typescript-eslint/restrict-template-expressions": "off",
|
||||||
"no-debugger": "off",
|
"no-debugger": "off",
|
||||||
"no-empty-function": "off",
|
"no-empty-function": "off",
|
||||||
|
Loading…
Reference in New Issue
Block a user