diff options
| author | 2023-02-27 10:08:16 +0100 | |
|---|---|---|
| committer | 2023-02-27 10:08:16 +0100 | |
| commit | c170c390b7d51f809b3e0064bf883221037397a3 (patch) | |
| tree | 444c5c0137a54280a6b4c3b16bf14cc24a0c8b51 /.devcontainer | |
| parent | e56ecf79f65b12ebaa600c961ffa2aab40cebcba (diff) | |
Dev Container extensions syntax update (#5145)
The JSON syntax has changed for specifying extensions
https://aka.ms/devcontainer.json
Diffstat (limited to '.devcontainer')
| -rw-r--r-- | .devcontainer/devcontainer.json | 30 |
1 files 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 ], |
