-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.code-workspace
More file actions
45 lines (45 loc) · 1.13 KB
/
project.code-workspace
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "solidjs-boilerplate",
"path": "apps/solidjs-boilerplate"
},
{
"name": "solid-hiding-header",
"path": "packages/solid-hiding-header"
}
],
"settings": {
"editor.tabSize": 2,
"editor.detectIndentation": false,
"search.exclude": {
"package-lock.json": true
},
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.format.enable": true,
"editor.codeActionsOnSave": [
"source.addMissingImports",
// "source.fixAll.eslint",
"source.fixAll"
],
"[javascript][javascriptreact][typescript][typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[json][jsonc]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// "[css][scss]": {
// "editor.formatOnSave": false,
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
"css.validate": false,
"scss.validate": false,
"testing.automaticallyOpenPeekView": "never"
}
}