devcontainers-features/.devcontainer/devcontainer.json
2023-09-18 06:24:09 +00:00

28 lines
947 B
JSON

{
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye",
"customizations": {
"vscode": {
"settings": {
"json.schemas": [
{
"fileMatch": [
"*/devcontainer-feature.json"
],
"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainerFeature.schema.json"
}
],
"editor.formatOnSave": true
},
"extensions": [
"mads-hartmann.bash-ide-vscode",
"foxundermoon.shell-format"
]
}
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/lukewiwa/features/shellcheck:0": {}
},
"remoteUser": "node",
"updateContentCommand": "npm install -g @devcontainers/cli"
}