forked from BoundaryML/baml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
root.code-workspace
102 lines (101 loc) · 2.24 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
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
95
96
97
98
99
100
101
102
{
"folders": [
{
"path": ".baml"
},
{
"path": ".github"
},
{
"path": "docs"
},
{
"path": "engine"
},
{
"path": "integ-tests"
},
{
"path": "release"
},
{
"path": "tools"
},
{
"path": "typescript"
}
],
"settings": {
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"files.associations": {
"*.baml.j2": "jinja",
"*.js.j2": "jinja-js",
"*.ts.j2": "jinja-js"
},
"editor.colorDecoratorsLimit": 2000,
"editor.formatOnSaveMode": "file",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"mypy.enabled": false,
"git.openDiffOnClick": true,
"python.analysis.typeCheckingMode": "strict",
"rust-analyzer.procMacro.ignored": {
"napi-derive": ["napi"]
},
"sorbet.enabled": true,
"sorbet.lspConfigs": [
{
"id": "stable",
"name": "Sorbet",
"description": "Stable Sorbet Ruby IDE features",
"cwd": "${workspaceFolder}",
"command": [
"bundle",
"exec",
"srb",
"typecheck",
"--lsp",
"--disable-watchman"
]
}
],
"workbench.colorCustomizations": {
"activityBar.background": "#630001",
"titleBar.activeBackground": "#8B0002",
"titleBar.activeForeground": "#FFFBFB"
},
"biome.lspBin": "typescript/node_modules/@biomejs/biome/bin/biome",
"terminal.integrated.scrollback": 1e6
},
"extensions": {
"recommendations": [
"mhutchie.git-graph",
"github.copilot",
"pest.pest-ide-tools",
"ms-python.python",
"rust-lang.rust-analyzer",
"unifiedjs.vscode-mdx",
"tamasfe.even-better-toml",
"charliermarsh.ruff",
"matangover.mypy",
"samuelcolvin.jinjahtml",
"biomejs.biome",
"boundary.baml-extension"
]
}
}