Skip to content

Commit

Permalink
Adds jupyter as a vscode extension, fix validation errors in devconta…
Browse files Browse the repository at this point in the history
…iner.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 <[email protected]>
  • Loading branch information
craigomatic and thinkall authored Oct 27, 2023
1 parent 09bf41a commit 37deabe
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
{
"extensions": ["ms-python.python", "visualstudioexptteam.vscodeintellicode"],
"dockerFile": "Dockerfile",
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter",
"visualstudioexptteam.vscodeintellicode"
],
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash"
}
},
"dockerFile": "Dockerfile",
"updateContentCommand": "pip install -e . pre-commit && pre-commit install"
}

0 comments on commit 37deabe

Please sign in to comment.