-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdat-5.code-workspace
46 lines (46 loc) · 1.18 KB
/
dat-5.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
// "editor.formatOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[ignore]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"css.validate": false, // used for @tailwindcss
"scss.validate": false, // used for @tailwindcss,
"typescript.preferences.quoteStyle": "double",
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
}
}
}