Merge pull request #3561 from github/henrymercer/eslint-unused-vars

Linting: Require unused function parameters to start with `_`
This commit is contained in:
Michael B. Gale
2026-03-09 18:00:46 +00:00
committed by GitHub
+1
View File
@@ -161,6 +161,7 @@ export default [
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "all",
"argsIgnorePattern": "^_",
}
],