-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathparjs.code-workspace
61 lines (61 loc) · 2.15 KB
/
parjs.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
{
"folders": [
{
"path": "./packages/parjs",
"name": "parjs"
},
{
"path": "./packages/char-info",
"name": "char-info"
},
{
"path": ".",
"name": "root"
}
],
"settings": {
"jest.disabledWorkspaceFolders": ["root"],
"files.exclude": {
"packages/parjs": true,
"packages/char-info": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.nyc_output": true,
"**/coverage": true,
"**/dist-spec": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.aux": true,
"**/*.bbl": true,
"**/*.fdb_latexmk": true,
"**/*.fls": true,
"**/*.out": true,
"**/*.synctex.gz": true,
"**/.idea": true,
"**/.mypy_cache": true,
"**/__pycache__": true,
"**/dist": true,
"**/dist_aux": true,
".nyc_output": true,
"coverage": true,
"docs": true
},
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
// GregRos @ 2024
// For this to work, you need the 'APC Customize UI++' extension.
// It will color the rows in the explorer view based on the workspace folder.
// Even if you don't use the extension, please don't remove it, unless you don't know who I am.
"apc.stylesheet": {
".explorer-folders-view.explorer-folders-view .monaco-list-row:has(.monaco-icon-label[aria-label*='packages\\\\parjs'])": {
"background-image": "linear-gradient(to right, #0E5DE610, transparent)",
"border-left": "2px solid #7DADFF7D"
},
".explorer-folders-view.explorer-folders-view .monaco-list-row:has(.monaco-icon-label[aria-label*='packages\\\\char-info'])": {
"background-image": "linear-gradient(to right, #6EED1314, transparent)",
"border-left": "2px solid #6EED137C"
}
}
}
}