forked from vlitejs/vlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvlitejs.code-workspace
37 lines (37 loc) · 987 Bytes
/
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript][typescript][postcss][html][markdown][json][markdown]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.rulers": [100]
},
"editor.tabSize": 4,
"files.associations": {
"*.css": "postcss",
"*.html": "html",
"*.ts": "typescript",
"*.json": "json"
},
"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": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"csstools.postcss"
]
}
}