-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdevcontainer.json
More file actions
29 lines (29 loc) · 829 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
29 lines (29 loc) · 829 Bytes
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
{
"name": "Fasttime",
"extensions": [
"cschleiden.vscode-github-actions",
"github.github-vscode-theme",
"matklad.rust-analyzer",
"ms-vsliveshare.vsliveshare",
"serayuzgur.crates",
"vadimcn.vscode-lldb"
],
"dockerFile": "Dockerfile",
"settings": {
"editor.fontSize": 14,
"explorer.openEditors.visible": 0,
"editor.renderWhitespace": "all",
"editor.fontFamily": "Inconsolata, Menlo, Monaco, 'Courier New', monospace",
"editor.formatOnSave": true,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"workbench.colorTheme": "GitHub Dark",
"files.exclude": {
"**/CODE_OF_CONDUCT.md": true,
"**/LICENSE": true
},
"[rust]": {
"editor.defaultFormatter": "matklad.rust-analyzer"
}
},
"postCreateCommand": "cd tests/app && cargo +1.49.0 build --release --target wasm32-wasi && cd ../.."
}