21 lines
509 B
JSON
21 lines
509 B
JSON
{
|
|
"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",
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
"terminal.integrated.shell.linux": "/bin/bash"
|
|
}
|
|
} |