Kaynağa Gözat

feat(devcontainer): add initial devcontainer configuration for Ubuntu environment

Daniel Gibbs 10 ay önce
ebeveyn
işleme
de27a6acc4
1 değiştirilmiş dosya ile 21 ekleme ve 0 silme
  1. 21 0
      .devcontainer/devcontainer.json

+ 21 - 0
.devcontainer/devcontainer.json

@@ -0,0 +1,21 @@
+{
+  "name": "Ubuntu",
+  "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
+  "features": {
+    "ghcr.io/devcontainers-extra/features/prettier:1": {},
+    "ghcr.io/devcontainers-extra/features/shellcheck:1": {}
+  },
+  "customizations": {
+    "vscode": {
+      "extensions": [
+        "editorconfig.editorconfig",
+        "esbenp.prettier-vscode",
+        "ms-python.python",
+        "redhat.vscode-yaml",
+        "timonwong.shellcheck",
+        "yzhang.markdown-all-in-one"
+      ]
+    }
+  },
+  "postCreateCommand": "npm install --save-dev prettier-plugin-sh"
+}