Skip to content

Instantly share code, notes, and snippets.

@pythoninthegrass
Created October 19, 2024 22:07
Show Gist options
  • Save pythoninthegrass/4962a277354100c6e731e364f134fd6e to your computer and use it in GitHub Desktop.
Save pythoninthegrass/4962a277354100c6e731e364f134fd6e to your computer and use it in GitHub Desktop.
biome config (used primarily as json formatter in zed)
// https://biomejs.dev/formatter/#options
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"formatter": {
"enabled": true,
"useEditorconfig": true,
"formatWithErrors": true
},
"json": {
"parser": {
"allowComments": true,
"allowTrailingCommas": true
},
"formatter": {
"enabled": true,
"indentWidth": 2,
"trailingCommas": "none"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment