forked from TilBlechschmidt/WebGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebgrid.code-workspace
43 lines (43 loc) · 995 Bytes
/
webgrid.code-workspace
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
{
"folders": [
{
"path": "."
},
],
"settings": {
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange",
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode",
"editor.quickSuggestions": {
"strings": true
}
},
"tailwindCSS.includeLanguages": {
"svelte": "html"
},
"rust-analyzer.files.excludeDirs": [
".cache"
],
"rust-analyzer.linkedProjects": [
"core/Cargo.toml"
],
"rust-analyzer.assist.importEnforceGranularity": true,
"rust-analyzer.assist.importGranularity": "module",
"rust-analyzer.lens.implementations": false,
},
"extensions": {
"recommendations": [
"serayuzgur.crates",
"matklad.rust-analyzer",
"vadimcn.vscode-lldb",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"dbaeumer.vscode-eslint",
"svelte.svelte-vscode"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
"rust-lang.rust"
]
},
}