-
Notifications
You must be signed in to change notification settings - Fork 1
/
devcontainer.json
33 lines (33 loc) · 1.2 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"image": "mcr.microsoft.com/devcontainers/python:1-3.11-bookworm",
"features": {
"ghcr.io/devcontainers/features/sshd:1": {},
"ghcr.io/lukewiwa/features/shellcheck:0": {}
},
"customizations": {
"vscode": {
"extensions": [
"alefragnani.numbered-bookmarks",
"bierner.markdown-preview-github-styles",
"eamodio.gitlens",
"GitHub.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"mhutchie.git-graph",
"ms-python.python",
"ms-toolsai.jupyter",
"MS-vsliveshare.vsliveshare",
"stkb.rewrap",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-spanish",
"tamasfe.even-better-toml"
],
"settings": {
"gitlens.showWelcomeOnInstall": false,
"gitlens.showWhatsNewAfterUpgrades": false,
"python.terminal.activateEnvironment": false
}
}
},
"onCreateCommand": [".devcontainer/onCreate"],
"postStartCommand": [".devcontainer/postStart"]
}