From 692352364f4a7e9b8c5b8755650c36fd77ab93d2 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Wed, 25 Oct 2023 16:56:52 +1300 Subject: [PATCH] Update devcontainer file (#29519) --- .devcontainer/devcontainer.json | 38 ++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5805e4be0e2..8d98d8e2237 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,22 +11,26 @@ "appPort": [4000], "onCreateCommand": "bundle install && npm install", "containerEnv": { "DEVCONTAINER": "true" }, - "extensions": [ - "davidanson.vscode-markdownlint", - "editorconfig.editorconfig", - "GitHub.vscode-pull-request-github", - "mrmlnc.vscode-scss", - "rebornix.Ruby", - "streetsidesoftware.code-spell-checker", - "taichi.vscode-textlint", - "yzhang.markdown-all-in-one" - ], - "settings": { - "editor.renderWhitespace": "boundary", - "editor.rulers": [80, 100, 120], - "gitlens.showWelcomeOnInstall": false, - "gitlens.showWhatsNewAfterUpgrades": false, - "terminal.integrated.shell.linux": "/usr/bin/zsh", - "workbench.startupEditor": "none" + "customizations": { + "vscode": { + "extensions": [ + "davidanson.vscode-markdownlint", + "editorconfig.editorconfig", + "GitHub.vscode-pull-request-github", + "mrmlnc.vscode-scss", + "rebornix.Ruby", + "streetsidesoftware.code-spell-checker", + "taichi.vscode-textlint", + "yzhang.markdown-all-in-one" + ], + "settings": { + "editor.renderWhitespace": "boundary", + "editor.rulers": [80, 100, 120], + "gitlens.showWelcomeOnInstall": false, + "gitlens.showWhatsNewAfterUpgrades": false, + "terminal.integrated.shell.linux": "/usr/bin/zsh", + "workbench.startupEditor": "none" + } + } } }