Adds jupyter as a vscode extension, fix validation errors in devcontainer.json (#433)

* Adds jupyter as a vscode extension, fix validation errors in vscode (see https://containers.dev/supporting#visual-studio-code)

* Trim trailing whitespace

* Add newline to end of file

---------

Co-authored-by: Li Jiang <bnujli@gmail.com>
This commit is contained in:
Craig Presti 2023-10-27 23:19:41 +10:30 committed by GitHub
parent 09bf41a1ed
commit 37deabefcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 8 deletions

View File

@ -1,6 +1,11 @@
{ {
"extensions": ["ms-python.python", "visualstudioexptteam.vscodeintellicode"], "customizations": {
"dockerFile": "Dockerfile", "vscode": {
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter",
"visualstudioexptteam.vscodeintellicode"
],
"settings": { "settings": {
"terminal.integrated.profiles.linux": { "terminal.integrated.profiles.linux": {
"bash": { "bash": {
@ -8,6 +13,9 @@
} }
}, },
"terminal.integrated.defaultProfile.linux": "bash" "terminal.integrated.defaultProfile.linux": "bash"
}
}
}, },
"dockerFile": "Dockerfile",
"updateContentCommand": "pip install -e . pre-commit && pre-commit install" "updateContentCommand": "pip install -e . pre-commit && pre-commit install"
} }