-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.code-workspace
47 lines (47 loc) · 1.34 KB
/
example.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
44
45
46
47
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.autoSave": "afterDelay",
"rust-analyzer.checkOnSave.enable": true,
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.checkOnSave.allTargets": true,
"rust-analyzer.files.excludeDirs": [
"**/target",
"**/node_modules",
"**/dist",
"**/build",
"**/public",
"**/assets",
"**/src-tauri/target",
"**/scripts",
"**/src/components",
"**/src/interfaces",
"**/src/pages",
"**/src/static",
"**/src/styles",
"**/src/utils"
],
"rust-analyzer.files.watcher": "client",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveServer.settings.multiRootWorkspaceName": "Example",
"cSpell.words": [
"typecheck"
]
}
}