fix: allow underscore-prefixed unused parameters in ESLint
Some checks failed
CI / test (push) Failing after 5s
CI / build (push) Has been skipped

This commit is contained in:
2026-01-31 12:51:29 +00:00
parent 6a43882282
commit e4667a29c2

View File

@@ -11,6 +11,6 @@
},
"rules": {
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": "error"
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }]
}
}