forked from ikrima/gamedevguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamedevguide.code-workspace
47 lines (46 loc) · 1.3 KB
/
gamedevguide.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
47
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"public": true,
"node_modules": true,
".cache": true,
".vscode/ipch": true,
},
"eslint.enable": true,
"eslint.packageManager": "npm",
"npm.packageManager": "npm",
"peacock.color": "#ae4bd088",
"workbench.colorCustomizations": {
"activityBar.background": "#c073db88",
"activityBar.activeBackground": "#c073db88",
"activityBar.activeBorder": "#e5d19a",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#e5d19a",
"activityBarBadge.foreground": "#15202b",
"statusBar.background": "#ae4bd088",
"statusBarItem.hoverBackground": "#c073db88",
"statusBar.foreground": "#e7e7e7",
"sash.hoverBorder": "#c073db88",
"statusBarItem.remoteBackground": "#ae4bd088",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#ae4bd088",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#ae4bd099",
"titleBar.inactiveForeground": "#e7e7e799",
"commandCenter.border": "#e7e7e799"
},
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"davidanson.vscode-markdownlint",
],
},
}