From a49e5cd2ec6327f49a04d657a2f5e4c00bf489a5 Mon Sep 17 00:00:00 2001 From: wujunchen Date: Sun, 26 Apr 2026 08:59:40 +0800 Subject: [PATCH] chore: upgrade biome noExplicitAny from off to warn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- biome.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biome.json b/biome.json index b95510c..756918a 100644 --- a/biome.json +++ b/biome.json @@ -8,7 +8,7 @@ "rules": { "recommended": true, "suspicious": { - "noExplicitAny": "off", + "noExplicitAny": "warn", "noRedundantUseStrict": "off", "noImplicitAnyLet": "off" },