forked from Giveth/giveth-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgiveth2-full-stack.code-workspace
More file actions
60 lines (60 loc) · 2.18 KB
/
giveth2-full-stack.code-workspace
File metadata and controls
60 lines (60 loc) · 2.18 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
{
"extensions": {
"recommendations": [
//Prettier is needed to conveniently format on save
"esbenp.prettier-vscode",
//And even better correctly lint everything according to standardJS
"numso.prettier-standard-vscode",
//To see our status with StandardJS we can use problem highlighting - in hindsight, properly configured this could be all we need
"chenxsan.vscode-standardjs",
//to get SVG previews
"simonsiefke.svg-preview"
]
},
"folders": [
{
"name": "impact-graph",
"path": "../impact-graph"
},
{
"path": "../giveth-next"
}
],
"settings": {
// Differentiate our giveth2 workspace from other open VSCode windows
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#c2449f",
"statusBar.background": "#c2449f",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#cf6ab3",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#c2449f99",
"titleBar.inactiveForeground": "#e7e7e799",
"activityBar.activeBackground": "#cf6ab3",
"activityBar.activeBorder": "#4e601f",
"activityBar.background": "#cf6ab3",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#4e601f",
"activityBarBadge.foreground": "#e7e7e7"
},
// "workbench.colorCustomizations": {
// "statusBar.background": "#c2449f",
// "statusBarItem.hoverBackground": "#cf6ab3",
// "titleBar.activeBackground": "#c2449f",
// "titleBar.inactiveBackground": "#c2449f99",
// "statusBar.foreground": "#e7e7e7",
// "titleBar.activeForeground": "#e7e7e7",
// "titleBar.inactiveForeground": "#e7e7e799",
// "activityBar.activeBackground": "#cf6ab3",
// "activityBar.activeBorder": "#4e601f",
// "activityBar.background": "#cf6ab3",
// "activityBar.foreground": "#15202b",
// "activityBar.inactiveForeground": "#15202b99",
// "activityBarBadge.background": "#4e601f",
// "activityBarBadge.foreground": "#e7e7e7"
// },
"peacock.color": "#C2449F",
"git.ignoreLimitWarning": true
}
}