-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdevcontainer.json
More file actions
29 lines (29 loc) · 758 Bytes
/
devcontainer.json
File metadata and controls
29 lines (29 loc) · 758 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": "parallel-disk-usage (full)",
"image": "mcr.microsoft.com/devcontainers/rust:1",
"remoteEnv": {
"TEST_SKIP": "cross_device_excludes_mount"
},
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "lts",
"nodeGypDependencies": true
},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.12",
"installTools": true
},
"ghcr.io/devcontainers-contrib/features/shellcheck:1": {},
"ghcr.io/devcontainers-contrib/features/shfmt:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"timonwong.shellcheck",
"mkhl.shfmt"
]
}
},
"postCreateCommand": "bash .devcontainer/full/post-create.sh"
}