From bd3997ffe92ed5ba7a549f2e50837b073dfc06d5 Mon Sep 17 00:00:00 2001 From: RevIQ Date: Fri, 9 Jan 2026 12:03:53 +0800 Subject: [PATCH] Ignore noExplicitAny in publisher-dashboard utils Add biome override to allow `any` in conditional types used for Svelte component utility types (WithoutChild, WithoutChildren). Co-Authored-By: Claude Opus 4.5 --- biome.jsonc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/biome.jsonc b/biome.jsonc index 0de93e0..0931de6 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -71,6 +71,17 @@ } } } + }, + { + // Allow any in conditional types for Svelte component utility types + "includes": ["apps/publisher-dashboard/src/lib/utils.ts"], + "linter": { + "rules": { + "suspicious": { + "noExplicitAny": "off" + } + } + } } ] }