From 82ea2c568871297cbc65c9c85b53493ba190c8fe Mon Sep 17 00:00:00 2001 From: Justin Newberry Date: Tue, 29 Aug 2023 15:05:17 -0700 Subject: [PATCH] Devcontainer: add recommended extensions (#29703) * add recommended extensions * add cython and jupter --- .devcontainer/devcontainer.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7c4d53960e..2dfe46b4f0 100755 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -19,5 +19,16 @@ "--volume=/tmp/comma_download_cache:/tmp/comma_download_cache", "--volume=/tmp/devcontainer_scons_cache:/tmp/scons_cache", "--shm-size=1G" - ] + ], + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-vscode.cpptools", + "ms-toolsai.jupyter", + "guyskk.language-cython", + "lharri73.dbc" + ] + } + } } \ No newline at end of file