Skip to content

Commit

Permalink
Added devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
willguibr committed Mar 29, 2024
1 parent 203f152 commit 529c17c
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,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"
]
}
}
}

0 comments on commit 529c17c

Please sign in to comment.