feat(lint): enable noExplicitAny biome rule as warn

Will flag new explicit 'any' annotations going forward.
Existing 672 usages remain (intentional for now).
This commit is contained in:
Crypto Rug Munch 2026-07-08 11:16:37 +07:00
parent 518cc5a981
commit dd0903a1e0

View file

@ -21,7 +21,7 @@
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off",
"noExplicitAny": "warn",
"noArrayIndexKey": "warn",
"noDocumentCookie": "error",
"noAssignInExpressions": "error"