forked from huggingface/dataset-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonorepo.code-workspace
55 lines (55 loc) · 1.07 KB
/
monorepo.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
{
"folders": [
{
"name": "ROOT",
"path": ".."
},
{
"name": "e2e",
"path": "../e2e"
},
{
"name": "jobs/mongodb_migration",
"path": "../jobs/mongodb_migration"
},
{
"name": "libs/libcommon",
"path": "../libs/libcommon"
},
{
"name": "services/admin",
"path": "../services/admin"
},
{
"name": "services/api",
"path": "../services/api"
},
{
"name": "services/reverse-proxy",
"path": "../services/reverse-proxy"
},
{
"name": "workers/datasets_based",
"path": "../workers/datasets_based"
}
],
"settings": {
"files.exclude": {
"e2e": true,
"jobs": true,
"libs": true,
"services": true,
"workers": true
},
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.flake8Enabled": true
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-kubernetes-tools.vscode-kubernetes-tools"
]
}
}