{ "$schema": "https://biomejs.dev/schemas/2.3.8/schema.json", "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 80 }, "linter": { "enabled": true }, "files": { "ignoreUnknown": false, "includes": [ "**", "!**/src/public/**/*", "!**/dist/**/*", "!**/node_modules/**/*", "!**/.astro/**/*" ] }, "assist": { "enabled": true, "actions": { "source": { "organizeImports": "on" } } }, "html": { "formatter": { "enabled": true, "indentScriptAndStyle": true }, "experimentalFullSupportEnabled": true }, "css": { "parser": { "cssModules": true } }, "overrides": [ { "includes": ["**/*.svelte", "**/*.astro", "**/*.vue"], "linter": { "rules": { "style": { "useConst": "off", "useImportType": "off" }, "correctness": { "noUnusedVariables": "off", "noUnusedImports": "off" }, "suspicious": { "noDuplicateProperties": "off" } } } } ] }