forked from dust-tt/dust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.code-workspace
More file actions
37 lines (37 loc) · 1.05 KB
/
Copy pathcore.code-workspace
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"folders": [
{
"name": "core",
"path": "core",
"settings": {
"rust-analyzer.checkOnSave.enable": true,
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.cargo.buildScripts.enable": true,
"rust-analyzer.cargo.allFeatures": true,
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.inlayHints.typeHints.enable": true,
"rust-analyzer.inlayHints.parameterHints.enable": true,
"rust-analyzer.inlayHints.chainingHints.enable": true,
"rust-analyzer.completion.autoimport.enable": true,
"rust-analyzer.imports.granularity.group": "module",
"rust-analyzer.imports.prefix": "crate",
"files.watcherExclude": {
"**/target/**": true
}
}
}
],
"settings": {
"search.exclude": {
"**/target": true
},
"files.exclude": {
"**/target": true
},
"files.autoSave": "onFocusChange",
"editor.formatOnSave": true,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
}
}