biome.md

 1---
 2title: Biome
 3description: "Configure Biome language support in Zed, including language servers, formatting, and debugging."
 4---
 5
 6# Biome
 7
 8[Biome](https://biomejs.dev/) support in Zed is provided by the community-maintained [Biome extension](https://github.com/biomejs/biome-zed).
 9Report issues to: [https://github.com/biomejs/biome-zed/issues](https://github.com/biomejs/biome-zed/issues)
10
11- Language Server: [biomejs/biome](https://github.com/biomejs/biome)
12
13## Biome Language Support
14
15The Biome extension includes support for the following languages:
16
17- JavaScript
18- TypeScript
19- JSX
20- TSX
21- JSON
22- JSONC
23- Vue.js
24- Astro
25- Svelte
26- CSS
27
28## Configuration
29
30By default, the `biome.json` file is required to be in the root of the workspace.
31
32```json
33{
34  "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json"
35}
36```
37
38For a full list of `biome.json` options see [Biome Configuration](https://biomejs.dev/reference/configuration/) documentation.
39
40See the [Biome Zed Extension README](https://github.com/biomejs/biome-zed) for a complete list of features and configuration options.