Browse Source

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

develop
Daniel Gibbs 6 days ago
parent
commit
de27a6acc4
Failed to extract signature
  1. 21
      .devcontainer/devcontainer.json

21
.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"
}
Loading…
Cancel
Save