disable eslint no-unused-vars for function args

This commit is contained in:
nflnkr 2024-01-29 14:17:11 +03:00
parent 9367a2178f
commit 1bb3cdae2f

@ -26,8 +26,10 @@ module.exports = {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/require-await": "warn",
"@typescript-eslint/no-unused-vars": [
"warn",
{ "vars": "all", "args": "none" }
],
"@typescript-eslint/restrict-template-expressions": "off",
"no-debugger": "off",
"no-empty-function": "off",