forked from enkoder/beanstalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
windows.code-workspace
49 lines (49 loc) · 1.21 KB
/
windows.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
{
"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": "on"
},
"typescript.enablePromptUseWorkspaceTsdk": true,
// 7 years, this issue has been open... https://github.com/microsoft/vscode/issues/5595
"typescript.tsdk": "beanstalk\\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
}
}