Skip to content

Commit 14e35d9

Browse files
committed
feat(devcontainer): update devcontainer configuration for improved tooling
* Changed container name to "BASH Dev Container" * Added additional features: `actionlint`, `checkov`, `markdownlint-cli`, and `github-cli` * Updated VSCode extensions for enhanced development experience
1 parent 4714851 commit 14e35d9

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

.devcontainer/devcontainer.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
{
2-
"name": "Ubuntu",
2+
"name": "BASH Dev Container",
33
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
44
"features": {
5-
"ghcr.io/devcontainers-extra/features/prettier:1": {},
6-
"ghcr.io/devcontainers-extra/features/shellcheck:1": {}
5+
"ghcr.io/devcontainers-community/npm-features/prettier:1": {},
6+
"ghcr.io/devcontainers-extra/features/actionlint:1": {},
7+
"ghcr.io/devcontainers-extra/features/checkov:1": {},
8+
"ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {},
9+
"ghcr.io/devcontainers-extra/features/shellcheck:1": {},
10+
"ghcr.io/devcontainers-extra/features/yamllint:2": {},
11+
"ghcr.io/devcontainers/features/github-cli:1": {}
712
},
813
"customizations": {
914
"vscode": {
1015
"extensions": [
11-
"editorconfig.editorconfig",
12-
"esbenp.prettier-vscode",
13-
"ms-python.python",
16+
"DavidAnson.vscode-markdownlint",
17+
"github.vscode-github-actions",
18+
"GitHub.vscode-pull-request-github",
19+
"hashicorp.terraform",
20+
"ms-azuretools.vscode-azureterraform",
1421
"redhat.vscode-yaml",
1522
"timonwong.shellcheck",
1623
"yzhang.markdown-all-in-one"
1724
]
1825
}
19-
},
20-
"postCreateCommand": "npm install --save-dev prettier-plugin-sh"
26+
}
2127
}

0 commit comments

Comments
 (0)