sparse/.devcontainer/devcontainer.json
2023-05-06 23:35:33 -04:00

38 lines
1006 B
JSON

{
"name": "sparse",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"settings": {
"licenser.license": "AGPLv3",
"licenser.projectName": "sparse",
"lldb.executable": "/usr/bin/lldb",
"rust-analyzer.checkOnSave": true,
"rust-analyzer.checkOnSave.command": "clippy"
},
"extensions": [
"tootone.org-mode",
"rust-lang.rust-analyzer",
"ymotongpoo.licenser",
"ms-azuretools.vscode-docker",
"bungcip.better-toml",
"vadimcn.vscode-lldb"
]
}
},
"runArgs": [
"--privileged",
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"postStartCommand": "git submodule update --init",
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker": {
"dockerDashComposeVersion": "v2"
}
}
}