[[Biome]]が[[Vue]]や[[Svelte]]のSFC構文に完全対応していないため、false negativeになるlint rulesをあらかじめ無効化するフラグ。[[Biome]] 2.4.0時点だと以下のような設定が入るイメージ。 ```json { "overrides": [ { "includes": ["**/*.svelte", "**/*.astro", "**/*.vue"], "linter": { "rules": { "style": { "useConst": "off", "useImportType": "off" }, "correctness": { "noUnusedVariables": "off", "noUnusedImports": "off" } } } } ] } ```