forked from sirgwain/craig-stars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcs.code-workspace
More file actions
34 lines (34 loc) · 807 Bytes
/
cs.code-workspace
File metadata and controls
34 lines (34 loc) · 807 Bytes
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
{
"folders": [
{
"name": "root",
"path": "./"
},
{
"name": "frontend",
"path": "frontend"
}
],
"settings": {
"[json][jsonc][jsonl][js][ts][css][html][svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.associations": {
"*.css": "tailwindcss"
},
"testing.automaticallyOpenPeekView": "never",
"typescript.tsdk": "frontend/node_modules/typescript/lib",
"goStructTagAutogen.generation": {
"template": "json:\"{{camel}},omitempty\"",
"json": {
"cases": ["camel"],
"options": ["omitempty", "-"]
}
},
// stop VS Code from trying to mess with tasks
"task.autoDetect": "off",
"task.problemMatchers.neverPrompt": true,
"typescript.format.semicolons": "insert",
"typescript.preferences.preferTypeOnlyAutoImports": true
}
}