chore: upgrade biome noExplicitAny from off to warn

Enable noExplicitAny as a warning so remaining any usages are visible
in lint output. 20 warnings exist in API response handlers and Obsidian
internal type access — these are intentional and documented.

Change-Id: I96c190e594bc3391256f77a59e155f23436d3db3
This commit is contained in:
wujunchen 2026-04-26 08:59:40 +08:00
parent 31e57c8b19
commit a49e5cd2ec

View file

@ -8,7 +8,7 @@
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off",
"noExplicitAny": "warn",
"noRedundantUseStrict": "off",
"noImplicitAnyLet": "off"
},