-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathvlitejs.code-workspace
48 lines (48 loc) · 1.1 KB
/
vlitejs.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "biomejs.biome",
"[javascript][typescript][css][html][markdown][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"
},
"prettier.configPath": "./config/prettier.config.cjs",
"editor.tabSize": 4,
"files.associations": {
"*.css": "css",
"*.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],
"files.eol": "\n"
},
"extensions": {
"recommendations": ["biomejs.biome", "csstools.postcss"]
}
}