about summary refs log tree commit diff
path: root/.devcontainer
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2023-02-19 15:02:46 +0900
committerGitHub <noreply@github.com>2023-02-19 07:02:46 +0100
commit77779ddebc9cad0aecb859f222c3ab6151c6267e (patch)
treee6a2543c61663256e49216532c432aa28a96e267 /.devcontainer
parente0e63b73ee906abea5e359e695bff4276e6c3276 (diff)
Fix devcontainer.json format (#23715)
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json24
1 files changed, 15 insertions, 9 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index b98f6a21e..6ac6993ee 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -4,16 +4,22 @@
   "service": "app",
   "workspaceFolder": "/mastodon",
 
-  // Set *default* container specific settings.json values on container create.
-  "settings": {},
+  // Configure tool-specific properties.
+  "customizations": {
+    // Configure properties specific to VS Code.
+    "vscode": {
+      // Set *default* container specific settings.json values on container create.
+      "settings": {},
 
-  // Add the IDs of extensions you want installed when the container is created.
-  "extensions": [
-    "EditorConfig.EditorConfig",
-    "dbaeumer.vscode-eslint",
-    "rebornix.Ruby",
-    "webben.browserslist"
-  ],
+      // Add the IDs of extensions you want installed when the container is created.
+      "extensions": [
+        "EditorConfig.EditorConfig",
+        "dbaeumer.vscode-eslint",
+        "rebornix.Ruby",
+        "webben.browserslist"
+      ]
+    }
+  },
 
   "features": {
     "ghcr.io/devcontainers/features/sshd:1": {