mirror of
https://github.com/zoriya/v10.git
synced 2026-08-08 23:27:58 +00:00
Co-authored-by: Darius Cepulis <dcepulis@mux.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
82 lines
2.1 KiB
JSON
82 lines
2.1 KiB
JSON
{
|
|
"auto_install_extensions": {
|
|
"biome": true,
|
|
"astro": true,
|
|
"mdx": true,
|
|
"markdownlint": true
|
|
},
|
|
"format_on_save": "on",
|
|
"lsp": {
|
|
"biome": {
|
|
"settings": {
|
|
"require_config_file": true
|
|
}
|
|
},
|
|
"vtsls": {
|
|
"settings": {
|
|
"vtsls": {
|
|
"autoUseWorkspaceTsdk": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"languages": {
|
|
"JavaScript": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true,
|
|
"source.organizeImports.biome": true
|
|
},
|
|
"prettier": { "allowed": false },
|
|
"language_servers": ["!eslint", "..."]
|
|
},
|
|
"TypeScript": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true,
|
|
"source.organizeImports.biome": true
|
|
},
|
|
"prettier": { "allowed": false },
|
|
"language_servers": ["!eslint", "..."]
|
|
},
|
|
"TSX": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true,
|
|
"source.organizeImports.biome": true
|
|
},
|
|
"prettier": { "allowed": false },
|
|
"language_servers": ["!eslint", "..."]
|
|
},
|
|
"JSON": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true
|
|
},
|
|
"prettier": { "allowed": false }
|
|
},
|
|
"JSONC": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true
|
|
},
|
|
"prettier": { "allowed": false }
|
|
},
|
|
"CSS": {
|
|
"formatter": { "language_server": { "name": "biome" } },
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true
|
|
},
|
|
"prettier": { "allowed": false }
|
|
},
|
|
"Astro": {
|
|
"formatter": "prettier",
|
|
"code_actions_on_format": {
|
|
"source.fixAll.biome": true,
|
|
"source.organizeImports.biome": true
|
|
},
|
|
"prettier": { "allowed": true }
|
|
}
|
|
}
|
|
}
|