1{ 2 "image": "gcr.io/crosvm-infra/crosvm_dev:latest", 3 "customizations": { 4 "vscode": { 5 "extensions": [ 6 "rust-lang.rust-analyzer", 7 "tamasfe.even-better-toml", 8 "esbenp.prettier-vscode", 9 "ms-python.vscode-pylance", 10 "foxundermoon.shell-format", 11 "timonwong.shellcheck" 12 ] 13 } 14 }, 15 "runArgs": [ 16 // Allow access to the kvm device so we can run VMs for testing 17 "--device=/dev/kvm", 18 "--group-add=kvm", 19 // Allow a higher PID limit since we launch a lot of test processes. 20 "--pids-limit=4096" 21 ], 22 "updateContentCommand": "git config --global --add safe.directory '*' && git submodule update --init" 23} 24