forked from enkoder/beanstalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unix.code-workspace
55 lines (55 loc) · 1.39 KB
/
unix.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
{
"folders": [
{
"path": "."
},
{
"path": "app"
},
{
"path": "api"
}
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
"tailwindCSS.includeLanguages": {
"html": "html",
"javascript": "javascript",
"css": "css"
},
"files.associations": {
"*.css": "tailwindcss"
},
"editor.quickSuggestions": {
"strings": true
},
"typescript.enablePromptUseWorkspaceTsdk": true,
// 7 years, this issue has been open... https://github.com/microsoft/vscode/issues/5595
"typescript.tsdk": "${workspaceRoot}/node_modules/typescript/lib",
"files.eol": "\n",
"[markdown]": {
"editor.defaultFormatter": "mervin.markdown-formatter",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "on",
"editor.acceptSuggestionOnEnter": "on"
},
"markdownFormatter.formatOpt": {
"wrap_line_length": 120,
"indent_size": 2
},
"editor.wordWrap": "on",
"editor.wordWrapColumn": 120,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
}