-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathp5-tools.code-workspace
74 lines (74 loc) · 2.05 KB
/
p5-tools.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
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
73
74
{
"folders": [
{
"path": ".",
"name": "p5-tools (root)"
},
{
"path": "p5-analysis",
"name": "p5-analysis (package)"
},
{
"path": "p5-server",
"name": "p5-server (package)"
}
],
"settings": {
"files.associations": {
"NOTES": "markdown",
},
"files.exclude": {
"dist": true,
"node_modules": true
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"typescript.tsc.autoDetect": "off",
"search.exclude": {
".yarn/**/*.cjs": true,
"**/build": true,
"**/dist": true
},
"emeraldwalk.runonsave": {
"commands": [
{
"match": "package.json",
"isAsync": true,
"cmd": "echo fixpack ${file}"
}
]
},
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#65c89b",
"activityBar.activeBorder": "#945bc4",
"activityBar.background": "#65c89b",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#945bc4",
"activityBarBadge.foreground": "#e7e7e7",
"statusBar.background": "#42b883",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#359268",
"titleBar.activeBackground": "#42b883",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#42b88399",
"titleBar.inactiveForeground": "#15202b99",
"sash.hoverBorder": "#65c89b",
"statusBarItem.remoteBackground": "#42b883",
"statusBarItem.remoteForeground": "#15202b",
"commandCenter.border": "#15202b99"
},
"peacock.color": "#42b883",
"ponicode.testSettings.testLocation.locationType": "Custom",
"ponicode.testSettings.testLocation.path": "{rootDir}/tests/{fileName}.test.{ext}",
"editor.foldingImportsByDefault": true
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"davidanson.vscode-markdownlint",
"emeraldwalk.runonsave"
]
}
}