-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathNoteBlockWorld.code-workspace
More file actions
72 lines (72 loc) · 1.86 KB
/
NoteBlockWorld.code-workspace
File metadata and controls
72 lines (72 loc) · 1.86 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"folders": [
{
"path": ".",
"name": "Root"
},
{
"path": "./apps/backend",
"name": "Backend"
},
{
"path": "./apps/frontend",
"name": "Frontend"
},
{
"path": "./packages/configs",
"name": "configs"
},
{
"path": "./packages/database",
"name": "database"
},
{
"path": "./packages/song",
"name": "song"
},
{
"path": "./packages/sounds",
"name": "sounds"
},
{
"path": "./packages/thumbnail",
"name": "thumbnail"
}
],
"settings": {
"window.title": "${dirty}${rootName}${separator}${profileName}${separator}${appName}",
"editor.formatOnSave": true,
"eslint.validate": ["typescript"],
"eslint.run": "onType",
"eslint.format.enable": true,
"mdx.server.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/dist": true
},
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#fac977",
"activityBar.background": "#fac977",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#069a62",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#fac977",
"statusBar.background": "#f8b646",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#f6a315",
"statusBarItem.remoteBackground": "#f8b646",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#f8b646",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#f8b64699",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#f8b646"
}
}