-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvista-remote.code-workspace
More file actions
50 lines (50 loc) · 1.48 KB
/
Copy pathvista-remote.code-workspace
File metadata and controls
50 lines (50 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"folders": [
{ "name": "🏠 Meta-Repo", "path": "." },
{ "name": "📦 Shared Protocol", "path": "shared" },
{ "name": "⚙️ Server", "path": "server" },
{ "name": "🤖 AI Workers", "path": "ai" },
{ "name": "🌐 Web (Rsbuild)", "path": "web" },
{ "name": "💻 Desktop (Electron)", "path": "desktop" },
{ "name": "📱 Mobile (RN)", "path": "mobile" },
{ "name": "🐳 Deploy (Docker)", "path": "deploy" },
{ "name": "📚 Docs (Rspress)", "path": "docs" }
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
},
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/doc_build": true
}
},
"extensions": {
"recommendations": ["biomejs.biome", "editorconfig.editorconfig"]
}
}