Skip to content

Commit e2397f1

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 a
1 parent 4714851 commit e2397f1

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

.devcontainer/devcontainer.json

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,29 @@
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+
"plugins": "prettier-plugin-sh"
7+
},
8+
"ghcr.io/devcontainers-extra/features/actionlint:1": {},
9+
"ghcr.io/devcontainers-extra/features/checkov:1": {},
10+
"ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {},
11+
"ghcr.io/devcontainers-extra/features/shellcheck:1": {},
12+
"ghcr.io/devcontainers-extra/features/yamllint:2": {},
13+
"ghcr.io/devcontainers/features/github-cli:1": {}
714
},
815
"customizations": {
916
"vscode": {
1017
"extensions": [
11-
"editorconfig.editorconfig",
12-
"esbenp.prettier-vscode",
13-
"ms-python.python",
18+
"DavidAnson.vscode-markdownlint",
19+
"github.vscode-github-actions",
20+
"GitHub.vscode-pull-request-github",
21+
"hashicorp.terraform",
22+
"ms-azuretools.vscode-azureterraform",
1423
"redhat.vscode-yaml",
1524
"timonwong.shellcheck",
1625
"yzhang.markdown-all-in-one"
1726
]
1827
}
19-
},
20-
"postCreateCommand": "npm install --save-dev prettier-plugin-sh"
28+
}
2129
}

0 commit comments

Comments
 (0)