feat: init project

This commit is contained in:
M1000fr
2026-01-10 17:27:30 +01:00
parent d02e52aed5
commit 00fb21c558
22 changed files with 957 additions and 5 deletions

22
.zed/settings.json Normal file
View File

@@ -0,0 +1,22 @@
// 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"]
}
}
}
}