-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvlitejs.github.io.code-workspace
More file actions
57 lines (57 loc) · 1.26 KB
/
vlitejs.github.io.code-workspace
File metadata and controls
57 lines (57 loc) · 1.26 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
51
52
53
54
55
56
57
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "biomejs.biome",
"[javascript][typescript][postcss][json][markdown]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.rulers": [100]
},
"[markdown][html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordWrap": "off"
},
"[yaml]": {
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.autoIndent": "none"
},
"[javascript][typescript][json][css]": {
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
}
},
"editor.tabSize": 4,
"files.associations": {
"*.css": "postcss",
"*.html": "html",
"*.ts": "typescript",
"*.json": "json",
"*.yaml": "yaml",
"*.yml": "yaml"
},
"files.trimTrailingWhitespace": true,
"javascript.format.enable": false,
"javascript.validate.enable": false,
"typescript.validate.enable": false,
"search.exclude": {
"**/node_modules": true
},
"editor.rulers": [100]
},
"extensions": {
"recommendations": [
"biomejs.biome",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"mhmadhamster.postcss-language"
]
}
}