-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnemtus.code-workspace
More file actions
55 lines (55 loc) · 1.67 KB
/
Copy pathnemtus.code-workspace
File metadata and controls
55 lines (55 loc) · 1.67 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
{
"folders": [
{ "path": "..", "name": "org-root" },
{ "path": ".", "name": "org-meta (.github)" },
{ "path": "../symbol" },
{ "path": "../symbol-networks" },
{ "path": "../symbol-product" },
{ "path": "../symbol-rest-api-client" },
{ "path": "../apps", "name": "nemtus-apps" }
],
"settings": {
// Watcher excludes: most important here since this does NOT honor .gitignore
// (keeps catapult's _build and node_modules from overloading the file watcher).
"files.watcherExclude": {
"**/.git/**": true,
"**/node_modules/**": true,
"**/_build/**": true,
"**/_temp/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/ts/**": true,
"**/__pycache__/**": true,
"**/*.egg-info/**": true,
"**/.pytest_cache/**": true,
"**/.mypy_cache/**": true,
"**/.ruff_cache/**": true,
"**/.venv/**": true,
"**/coverage/**": true,
"**/htmlcov/**": true
},
// Search excludes: keep generated artifacts out of search results (still shown in Explorer).
"search.exclude": {
"**/node_modules": true,
"**/_build": true,
"**/_temp": true,
"**/dist": true,
"**/build": true,
"**/ts": true,
"**/__pycache__": true,
"**/*.egg-info": true,
"**/.pytest_cache": true,
"**/.mypy_cache": true,
"**/.ruff_cache": true,
"**/.venv": true,
"**/coverage": true,
"**/htmlcov": true,
"**/package-lock.json": true
},
// Explorer hides only minimal noise (generated dirs stay visible): OS cruft and the 1Password secrets dir.
"files.exclude": {
"**/.DS_Store": true,
"**/.op": true
}
}
}