crosvm/.devcontainer/with_kvm/devcontainer.json
Zihan Chen 878a7837a9 dev_container: Replace better toml extension
VSCode prompted me Better TOML extension is deprecated and Even
Better TOML should be used instead.

TESTED=toml support still works after rebuilding dev container

Change-Id: Ic7a71f99a89a47e139627fcd75e35acbdf3bef41
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4728142
Auto-Submit: Zihan Chen <zihanchen@google.com>
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Dennis Kempin <denniskempin@google.com>
2023-07-27 23:37:15 +00:00

23 lines
681 B
JSON

{
"image": "gcr.io/crosvm-infra/crosvm_dev:latest",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"esbenp.prettier-vscode",
"ms-python.vscode-pylance",
"foxundermoon.shell-format",
"timonwong.shellcheck"
]
}
},
"runArgs": [
// Allow access to the kvm device so we can run VMs for testing
"--device=/dev/kvm",
"--group-add=kvm",
// Allow a higher PID limit since we launch a lot of test processes.
"--pids-limit=4096"
],
"updateContentCommand": "git config --global --add safe.directory '*' && git submodule update --init"
}