{ // We use Biome for linting and formatting. "eslint.enable": false, "prettier.enable": false, "editor.formatOnSave": true, // Auto fix "editor.codeActionsOnSave": { // Auto fix all Biome issues on save. "source.fixAll.biome": "always", "source.organizeImports.biome": "always", // Disable built-in organize imports to avoid conflicts with Biome. "source.organizeImports": "never" }, "biome.requireConfiguration": true, "editor.defaultFormatter": "biomejs.biome", "typescript.tsdk": "node_modules/typescript/lib", "[astro]": { "editor.defaultFormatter": "biomejs.biome" } }