-
Notifications
You must be signed in to change notification settings - Fork 79
/
monorepo.code-workspace
94 lines (94 loc) · 1.91 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"folders": [
{
"name": "ROOT",
"path": "..",
"python.defaultInterpreterPath": "${workspaceFolder}/e2e/.venv/bin/python"
},
{
"name": "chart",
"path": "../chart"
},
{
"name": "e2e",
"path": "../e2e"
},
{
"name": "front/admin_ui",
"path": "../front/admin_ui"
},
{
"name": "jobs/cache_maintenance",
"path": "../jobs/cache_maintenance"
},
{
"name": "jobs/mongodb_migration",
"path": "../jobs/mongodb_migration"
},
{
"name": "libs/libapi",
"path": "../libs/libapi"
},
{
"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": "services/rows",
"path": "../services/rows"
},
{
"name": "services/search",
"path": "../services/search"
},
{
"name": "services/sse-api",
"path": "../services/sse-api"
},
{
"name": "services/worker",
"path": "../services/worker"
},
{
"name": "services/webhook",
"path": "../services/webhook"
}
],
"settings": {
"files.exclude": {
"chart": true,
"e2e": true,
"jobs": true,
"libs": true,
"services": true
},
"spectral.rulesetFile": ".spectral.yml",
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
}
},
"extensions": {
"recommendations": [
"charliermarsh.ruff",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"stoplight.spectral"
]
}
}