-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugins-docs.code-workspace
47 lines (47 loc) · 1.36 KB
/
plugins-docs.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
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"stkb.rewrap",
"yzhang.markdown-all-in-one"
]
},
"settings": {
"files.exclude": {
"**/.git": true, // this is a default value
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.DS_Store": true, // this is a default value
"**/node_modules": true, // this excludes all folders
// named "node_modules" from
// the explore tree
// alternative version
"node_modules": true, // this excludes the folder
// only from the root of
// your workspace
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.mypy_cache": true,
"**/*.egg-info": true,
"**/.idea": true,
"**/.vscode": false,
"**/build": true,
"**/dist": true,
"**/out": true,
"**/.coverage": true,
"**/*.orig": true,
"**/bin": true,
"**/obj": true,
"**/_build": true,
"**/.build": true,
"**/*,cover": true,
"**/site": true,
"**/venv": true
},
"makefile.extensionOutputFolder": "./.vscode",
}
}