fix: allow underscore-prefixed unused parameters in ESLint
This commit is contained in:
@@ -11,6 +11,6 @@
|
||||
},
|
||||
"rules": {
|
||||
"@typescript-eslint/no-explicit-any": "warn",
|
||||
"@typescript-eslint/no-unused-vars": "error"
|
||||
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user