From ca3854791ed1893f8f6828aa6432aa1341882f1a Mon Sep 17 00:00:00 2001 From: Brian McManus Date: Wed, 26 Oct 2022 12:49:56 -0600 Subject: [PATCH] Move extensions to the proper devcontainer location --- .devcontainer/devcontainer.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d08e795..59a5618 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,11 +11,13 @@ "customizations": { "codespaces": { "openFiles": ["config/routes.rb", "README.md"] + }, + "vscode": { + "extensions": [ + "rebornix.Ruby" + ], } }, - "extensions": [ - "rebornix.Ruby" - ], "onCreateCommand": "bundle install --local", "postCreateCommand": "" }