From c170c390b7d51f809b3e0064bf883221037397a3 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 27 Feb 2023 10:08:16 +0100 Subject: Dev Container extensions syntax update (#5145) The JSON syntax has changed for specifying extensions https://aka.ms/devcontainer.json --- .devcontainer/devcontainer.json | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7d344e674..a30fdf5c7 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,19 +4,23 @@ "build": { "dockerfile": "Dockerfile" }, - "extensions": [ - "bmewburn.vscode-intelephense-client", - "DavidAnson.vscode-markdownlint", - "dbaeumer.vscode-eslint", - "eamodio.gitlens", - "EditorConfig.EditorConfig", - "foxundermoon.shell-format", - "mrmlnc.vscode-apache", - "ms-azuretools.vscode-docker", - "redhat.vscode-yaml", - "timonwong.shellcheck", - "ValeryanM.vscode-phpsab" - ], + "customizations": { + "vscode": { + "extensions": [ + "bmewburn.vscode-intelephense-client", + "DavidAnson.vscode-markdownlint", + "dbaeumer.vscode-eslint", + "eamodio.gitlens", + "EditorConfig.EditorConfig", + "foxundermoon.shell-format", + "mrmlnc.vscode-apache", + "ms-azuretools.vscode-docker", + "redhat.vscode-yaml", + "timonwong.shellcheck", + "ValeryanM.vscode-phpsab" + ] + } + }, "forwardPorts": [ 8080 ], -- cgit v1.2.3