Skip to content

Commit de27a6a

Browse files
committed
feat(devcontainer): add initial devcontainer configuration for Ubuntu environment
1 parent fc4b2f3 commit de27a6a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "Ubuntu",
3+
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
4+
"features": {
5+
"ghcr.io/devcontainers-extra/features/prettier:1": {},
6+
"ghcr.io/devcontainers-extra/features/shellcheck:1": {}
7+
},
8+
"customizations": {
9+
"vscode": {
10+
"extensions": [
11+
"editorconfig.editorconfig",
12+
"esbenp.prettier-vscode",
13+
"ms-python.python",
14+
"redhat.vscode-yaml",
15+
"timonwong.shellcheck",
16+
"yzhang.markdown-all-in-one"
17+
]
18+
}
19+
},
20+
"postCreateCommand": "npm install --save-dev prettier-plugin-sh"
21+
}

0 commit comments

Comments
 (0)