mirror of https://github.com/microsoft/autogen.git
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:
parent
09bf41a1ed
commit
37deabefcf
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue