Files
rust/.devcontainer/devcontainer.json

20 lines
471 B
JSON
Raw Normal View History

2019-05-01 13:00:29 -07:00
{
"name": "Rust",
"dockerFile": "Dockerfile",
"extensions": [
"rust-lang.rust",
"bungcip.better-toml",
"vadimcn.vscode-lldb"
],
"runArgs": [
// Comment out the next line to run as root instead. Linux users,
// update Dockerfile with your user's UID/GID if not 1000.
"-u", "vscode",
"--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"
],
"settings": {
"lldb.adapterType": "bundled",
2019-06-21 02:20:07 +00:00
"terminal.integrated.shell.linux": "/bin/bash"
}
2019-05-01 13:00:29 -07:00
}