{ "$schema": "https://biomejs.dev/schemas/2.3.5/schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "files": { "ignoreUnknown": false, "includes": ["**", "!**/.env", "!**/.env.*", "!**/.yarn/**/*", "!**/*.*css"] }, "formatter": { "enabled": true, "indentStyle": "space" }, "assist": { "actions": { "source": { "organizeImports": "on" } } }, "linter": { "enabled": true, "rules": { "recommended": true } }, "javascript": { "formatter": { "quoteStyle": "double" } }, "overrides": [ { "includes": ["**/*.svelte", "**/*.md"], "linter": { "rules": { "correctness": { "noUnusedLabels": "off", "noUnusedImports": "off", "noUnusedVariables": "off" }, "suspicious": { "noConfusingLabels": "off" }, "style": { "useConst": "off", "useImportType": "off" } } } } ] }