From 87382d67873959a4101117df51a1bb110eb5cf1d Mon Sep 17 00:00:00 2001 From: Dennis Kempin Date: Tue, 14 Mar 2023 16:58:13 +0000 Subject: [PATCH] Uprev codespace devcontainer.json The list of extensions was moved in the latest specs of devcontainer.json BUG=b:273332464 TEST=This CL is submitted from a codespace Change-Id: Icae494f8dc4e588f7b642de39f42e8923e245d46 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4338039 Commit-Queue: Dennis Kempin Reviewed-by: Zihan Chen --- .devcontainer/codespace/devcontainer.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.devcontainer/codespace/devcontainer.json b/.devcontainer/codespace/devcontainer.json index 80b8859f1a..4ce8389314 100644 --- a/.devcontainer/codespace/devcontainer.json +++ b/.devcontainer/codespace/devcontainer.json @@ -1,12 +1,17 @@ { - "image": "gcr.io/crosvm-infra/crosvm_dev:r0032", - "extensions": [ + // TODO(b/273529589): Automatically use latest version + "image": "gcr.io/crosvm-infra/crosvm_dev:r0037", + "customizations": { + "vscode": { + "extensions": [ "rust-lang.rust-analyzer", "bungcip.better-toml", "esbenp.prettier-vscode", "ms-python.vscode-pylance", "foxundermoon.shell-format", "timonwong.shellcheck" - ], - "updateContentCommand": "git submodule update --init" + ] + } + }, + "updateContentCommand": "git submodule update --init" }