-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathdevcontainer.json
File metadata and controls
45 lines (45 loc) · 1.2 KB
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
{
"name": "Rust",
"build": {
"dockerfile": "./Dockerfile",
"context": "."
},
"postCreateCommand": "rustc --version",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"dustypomerleau.rust-syntax",
"tamasfe.even-better-toml",
"eamodio.gitlens",
"davidanson.vscode-markdownlint",
"ms-azuretools.vscode-docker",
"shardulm94.trailing-spaces",
"Gruntfuggly.todo-tree",
"bierner.emojisense",
"stkb.rewrap",
"vscode-icons-team.vscode-icons",
"github.vscode-pull-request-github",
"redhat.vscode-yaml",
"bajdzis.vscode-database",
"IBM.output-colorizer",
"jrebocho.vscode-random",
"alefragnani.Bookmarks",
"editorconfig.editorconfig",
"vadimcn.vscode-lldb"
],
"settings": {
"files.eol": "\n",
"editor.formatOnSave": true,
"editor.codeActionsOnSaveTimeout": 3000,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "workspace"
}
}
}
},
"remoteUser": "root"
}