-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathdevcontainer.json
More file actions
40 lines (40 loc) · 1.03 KB
/
devcontainer.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
34
35
36
37
38
39
40
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
"image": "mcr.microsoft.com/devcontainers/python:1-3.9-bullseye",
"features": {
"ghcr.io/devcontainers-contrib/features/poetry:2": {
"version": "latest"
},
"ghcr.io/dhoeric/features/google-cloud-cli:1": {}
},
"postCreateCommand": "poetry install",
"customizations": {
"vscode": {
"extensions": [
// Python
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"ms-python.flake8",
"matangover.mypy",
"nwgh.bandit",
"KevinRose.vsc-python-indent",
// RestructuredText
"lextudio.restructuredtext",
"trond-snekvik.simple-rst",
// Helpers
"tamasfe.even-better-toml",
"njpwerner.autodocstring",
"aaron-bond.better-comments",
// Tools
"github.vscode-github-actions",
"GitHub.copilot",
"ms-toolsai.jupyter",
// VIM
"vscodevim.vim"
]
}
}
}