-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.code-workspace
81 lines (81 loc) · 1.62 KB
/
project.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"folders": [
{
"name": "project",
"path": "."
},
{
"name": "appy",
"path": "appy"
},
{
"name": "capacitor-rs",
"path": "capacitor-rs"
},
{
"name": "shared",
"path": "shared"
},
{
"name": "mobile",
"path": "mobile"
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/target": true,
"**/node_modules": true,
"**/Cargo.lock": true,
"**/dist": true,
"**/.vscode": false,
".github": true,
"appy": true,
"capacitor-rs": true,
"shared": true,
"mobile": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/.ruby-lsp": true,
"deployment/artifacts": true,
"dist": true
},
"editor.formatOnSave": true,
"rust-analyzer.procMacro.ignored": {
"leptos_macro": ["server", "component"]
},
"rust-analyzer.cargo.features": [],
"emmet.includeLanguages": {
"rust": "html",
"*.rs": "html"
},
"tailwindCSS.includeLanguages": {
"rust": "html",
"*.rs": "html"
},
"files.associations": {
"*.rs": "rust"
},
"editor.quickSuggestions": {
"other": "on",
"comments": "on",
"strings": true
},
"css.validate": false
},
"extensions": {
"recommendations": [
"bradlc.vscode-tailwindcss",
"rust-lang.rust-analyzer",
"skellock.just"
]
}
}