-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidate-target.code-workspace
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathvalidate-target.code-workspace
File metadata and controls
50 lines (50 loc) · 1.19 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "biomejs.biome",
"[javascript][typescript][postcss][html][markdown][json]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.rulers": [100]
},
"[javascript][typescript][typescriptreact][postcss][html][markdown][json]": {
"editor.formatOnSave": true
},
"[html][markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordWrap": "off"
},
"[javascript][typescript][typescriptreact][css][json][jsonc]": {
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
}
},
"[yaml]": {
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.autoIndent": "none"
},
"files.associations": {
"*.css": "postcss",
"*.html": "html",
"*.ts": "typescript",
"*.json": "json",
"*.yaml": "yaml",
"*.yml": "yaml"
},
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true
},
"files.eol": "\n"
},
"extensions": {
"recommendations": ["davidanson.vscode-markdownlint", "biomejs.biome", "esbenp.prettier-vscode"]
}
}