chore(lint): enable warning comments rule

This commit is contained in:
Peter Steinberger
2026-04-18 18:52:14 +01:00
parent 235cdb3f81
commit 3f3bc97cd3
5 changed files with 71 additions and 34 deletions

View File

@@ -12,6 +12,7 @@
"eslint/no-await-in-loop": "off",
"eslint/no-new": "error",
"eslint/no-shadow": "off",
"eslint/no-warning-comments": "error",
"eslint/no-unmodified-loop-condition": "error",
"eslint-plugin-unicorn/prefer-set-size": "error",
"oxc/no-accumulating-spread": "error",
@@ -51,6 +52,12 @@
"**/node_modules/**"
],
"overrides": [
{
"files": ["src/security/**"],
"rules": {
"eslint/no-warning-comments": "off"
}
},
{
"files": [
"**/*.test.ts",