diff options
Diffstat (limited to 'biome.jsonc')
-rw-r--r-- | biome.jsonc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/biome.jsonc b/biome.jsonc index bab1f1a05..a1000760a 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -34,6 +34,7 @@ "correctness": { "noUnusedVariables": "info", "noUnusedFunctionParameters": "info", + "noUnusedImports": "warn", }, }, }, @@ -87,11 +88,12 @@ }, }, { - "include": ["*.astro", "client.d.ts"], + "include": ["*.astro", "client.d.ts", "jsx-runtime.d.ts"], "linter": { "rules": { "correctness": { "noUnusedVariables": "off", + "noUnusedImports": "off", }, }, }, |