-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstash.code-workspace
More file actions
38 lines (38 loc) · 860 Bytes
/
stash.code-workspace
File metadata and controls
38 lines (38 loc) · 860 Bytes
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/node_modules/": true,
"**/package.json": false,
"**/package-lock.json": true,
"**/.github": true,
"**/.vscode": true,
"**/.psd": true,
"**/*.css.map": true,
"**/.gitignore": false,
"**/*.db-*": true,
"*.code-workspace": true,
".editorconfig": true,
".eslintrc.json": true,
".notes": false,
"ecosystem.config.cjs": true,
"public": false,
"**/.testUploads/": true,
},
"search.exclude": {
"**/node_modules": true,
"**/.github": true,
"**/.vscode": true,
"**/*.css.map": true,
"*.code-workspace": true,
".editorconfig": true,
"ecosystem.config.cjs": true,
"**/.testUploads/": true,
}
}
}