-
Notifications
You must be signed in to change notification settings - Fork 53
/
archgw.code-workspace
55 lines (55 loc) · 1 KB
/
archgw.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": "crates",
"path": "crates"
},
{
"name": "archgw_cli",
"path": "arch/tools"
},
{
"name": "model_server",
"path": "model_server"
},
{
"name": "tests_e2e",
"path": "tests/e2e"
},
{
"name": "tests_archgw",
"path": "tests/archgw"
},
{
"name": "tests_modelserver",
"path": "tests/modelserver"
},
{
"name": "chatbot_ui",
"path": "demos/shared/chatbot_ui"
}
],
"settings": {
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true
},
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.debugpy",
"rust-lang.rust-analyzer",
"humao.rest-client",
"github.copilot",
"eamodio.gitlens",
"ms-python.black-formatter",
"tamasfe.even-better-toml",
"esbenp.prettier-vscode",
]
}
}