-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
14 lines (14 loc) · 1.19 KB
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
image:
file: .gitpod.Dockerfile
tasks:
- init: pip3 install -r requirements.txt
command: autopep8 . --recursive --in-place && (pytest || true) && mypy --strict .
vscode:
extensions:
- streetsidesoftware.code-spell-checker # The Code Spell Checker extension is GPLv3-licensed, separate from this project. See its docs for details.
- ms-toolsai.jupyter # The Jupyter extension is MIT-licensed, separate from this project. See its docs for details.
- ms-toolsai.jupyter-keymap # The Jupyter Keymap extension is MIT-licensed, separate from this project. See its docs for details.
- ms-toolsai.jupyter-renderers # The Jupyter Notebook Renderers extension is MIT-licensed, separate from this project. See its docs for details.
- ms-toolsai.vscode-jupyter-cell-tags # The Jupyter Cell Tags extension is MIT-licensed, separate from this project. See its docs for details.
- ms-toolsai.vscode-jupyter-slideshow # The Jupyter Slide Show extension is MIT-licensed, separate from this project. See its docs for details.
- ms-python.python # The Python extension is MIT-licensed, separate from this project. Dependencies: Jupyter (MIT), Pylance (Microsoft proprietary). See docs for details.