From 4c6f3192b4a0a5e536ca891668c5b1e258e485ca Mon Sep 17 00:00:00 2001 From: kirillgroshkov Date: Sat, 10 Aug 2024 19:14:01 +0200 Subject: [PATCH] feat(biome): overrides for vue files --- cfg/biome.jsonc | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/cfg/biome.jsonc b/cfg/biome.jsonc index 70c9961..97cf8cb 100644 --- a/cfg/biome.jsonc +++ b/cfg/biome.jsonc @@ -73,5 +73,18 @@ "attributePosition": "auto" } }, - "overrides": [{ "include": ["tsconfig.json", "tsconfig.*.json"] }] + "overrides": [ + { + "include": ["*.vue"], + "linter": { + "rules": { + "correctness": { + // doesn't work well with *.vue files + "noUnusedImports": "off", + "noUnusedVariables": "off" + } + } + } + } + ] }