Skip to content

Instantly share code, notes, and snippets.

@MrBns
Last active December 3, 2025 09:31
Show Gist options
  • Select an option

  • Save MrBns/3a33faef7f78f6764d4f08db537a102c to your computer and use it in GitHub Desktop.

Select an option

Save MrBns/3a33faef7f78f6764d4f08db537a102c to your computer and use it in GitHub Desktop.
Biome Workspace Specific for Vscode

Install Biome

bun i -D @biomejs/biome && bunx biome init

Add config to .vscode/settings.json

inside {} paste.

    "biome.enabled": true,
    "editor.codeActionsOnSave": {
        "source.organizeImports.biome": "always"
    },
    "[typescript]": {
        "editor.defaultFormatter": "biomejs.biome"
    },
    "[javascript]": {
        "editor.defaultFormatter": "biomejs.biome"
    },
    "[typescriptreact]": {
        "editor.defaultFormatter": "biomejs.biome"
    },
    "[javascriptreact]": {
        "editor.defaultFormatter": "biomejs.biome"
    },
    "[css]": {
        "editor.defaultFormatter": "biomejs.biome"
    },
    "[html]": {
        "editor.defaultFormatter": "biomejs.biome"
    },
    "[json]": {
        "editor.defaultFormatter": "biomejs.biome"
    },
    "[jsonc]": {
        "editor.defaultFormatter": "biomejs.biome"
    },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment