chore(eslint): ignore irregular whitespace in comments (keep rule strict for code)

This commit is contained in:
ISA
2025-08-12 11:11:39 +02:00
parent 71f120aa27
commit 31a54deb2d
7 changed files with 78 additions and 6 deletions

View File

@@ -31,6 +31,15 @@
"react-hooks/exhaustive-deps": "warn",
"react/react-in-jsx-scope": "off",
"@next/next/no-img-element": "warn",
"react/no-unescaped-entities": "warn"
"react/no-unescaped-entities": "warn",
"no-irregular-whitespace": [
"error",
{
"skipComments": true,
"skipStrings": true,
"skipTemplates": true,
"skipRegExps": true
}
]
}
}