Skip to content

Commit 9fea0c8

Browse files
committed
chore: update workspace configuration for improved settings and folder structure
1 parent 1f445fe commit 9fea0c8

File tree

1 file changed

+44
-35
lines changed

1 file changed

+44
-35
lines changed

NoteBlockWorld.code-workspace

Lines changed: 44 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,46 @@
11
{
2-
"folders": [
3-
{
4-
"path": ".",
5-
"name": "Root"
6-
},
7-
{
8-
"path": "./server",
9-
"name": "Backend"
10-
},
11-
{
12-
"path": "./shared",
13-
"name": "Shared"
14-
},
15-
{
16-
"path": "./web",
17-
"name": "Frontend"
2+
"folders": [
3+
{
4+
"path": ".",
5+
"name": "Root"
6+
},
7+
{
8+
"path": "./server",
9+
"name": "Backend"
10+
},
11+
{
12+
"path": "./shared",
13+
"name": "Shared"
14+
},
15+
{
16+
"path": "./web",
17+
"name": "Frontend"
18+
}
19+
],
20+
"settings": {
21+
"window.title": "${dirty}${rootName}",
22+
"editor.formatOnSave": true,
23+
"eslint.validate": [
24+
"typescript"
25+
],
26+
"eslint.run": "onType",
27+
"eslint.format.enable": true,
28+
"mdx.server.enable": true,
29+
"editor.codeActionsOnSave": {
30+
"source.fixAll": "explicit"
31+
},
32+
"jest.disabledWorkspaceFolders": [
33+
"Root",
34+
"Frontend"
35+
],
36+
"search.exclude": {
37+
"**/.git": true,
38+
"**/node_modules": true,
39+
"**/dist": true,
40+
},
41+
"cSpell.words": [
42+
"Bentroen",
43+
"Tomast"
44+
]
1845
}
19-
],
20-
"settings": {
21-
"window.title": "${dirty}${rootName}",
22-
"editor.formatOnSave": true,
23-
"eslint.validate": ["typescript"],
24-
"eslint.run": "onType",
25-
"eslint.format.enable": true,
26-
"mdx.server.enable": true,
27-
"editor.codeActionsOnSave": {
28-
"source.fixAll": "explicit"
29-
},
30-
"jest.disabledWorkspaceFolders": ["Root", "Frontend"],
31-
"search.exclude": {
32-
"**/.git": true,
33-
"**/node_modules": true,
34-
"**/dist": true,
35-
}
36-
}
37-
}
46+
}

0 commit comments

Comments
 (0)