1
0
mirror of https://github.com/containers/youki synced 2024-11-26 14:13:49 +01:00
youki/.devcontainer/devcontainer.json

35 lines
643 B
JSON
Raw Normal View History

{
"name": "Youki",
"extensions": [
"rust-analyzer"
],
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"settings": {
"lldb.executable": "/usr/bin/lldb",
"files.watcherExclude": {
"**/target/**": true
},
"rust-analyzer.checkOnSave.command": "clippy"
},
"extensions": [
"vadimcn.vscode-lldb",
"mutantdino.resourcemonitor",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"serayuzgur.crates"
]
}
},
"runArgs": [
"--privileged"
],
"build": {
"dockerfile": "Dockerfile"
}
}