forked from BoundaryML/baml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
root.code-workspace
67 lines (67 loc) · 1.38 KB
/
root.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
{
"folders": [
{
"path": "engine"
},
{
"name": "typescript",
"path": "typescript"
},
{
"name": "Python Client",
"path": "clients/python"
},
{
"name": "Docs",
"path": "docs"
},
{
"name": "Release Tools",
"path": "release"
},
{
"name": "test1/python",
"path": "client-tests/test1/python"
},
{
"path": ".github"
},
{
"path": "client-tests/test2"
}
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"mypy.enabled": false,
"gloo.path": "${workspaceFolder}/cli/target/debug",
"editor.tabSize": 2,
"jest.disabledWorkspaceFolders": [
"test1/python",
"Python Client",
"Release Tools",
"Docs",
"engine",
".github",
"Rust CLI"
],
"git.openDiffOnClick": true,
"workbench.colorCustomizations": {
"activityBar.background": "#630001",
"titleBar.activeBackground": "#8B0002",
"titleBar.activeForeground": "#FFFBFB"
}
},
"extensions": {
"recommendations": ["xaver.clang-format"]
}
}