Files
core/.zed/settings.json
2026-01-10 17:28:29 +01:00

23 lines
546 B
JSON

// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
{
"formatter": { "language_server": { "name": "biome" } },
"code_actions_on_format": {
"source.fixAll.biome": true,
"source.organizeImports.biome": true
},
"lsp": {
"biome": {
"settings": {
"require_config_file": true
},
"binary": {
"path": "node_modules/.bin/biome",
"arguments": ["lsp-proxy"]
}
}
}
}