extensions has been removed and replaced by customizations (#1075)

Co-authored-by: Dennis Bappert <bappert@outlook.com>
This commit is contained in:
Dennis Bappert
2023-03-23 14:15:23 +01:00
committed by GitHub
parent b1b3312749
commit 420ff21c3b

View File

@ -15,10 +15,14 @@
"remoteEnv": { "remoteEnv": {
"PYTHONPATH": "${containerEnv:PATH}:${containerWorkspaceFolder}" "PYTHONPATH": "${containerEnv:PATH}:${containerWorkspaceFolder}"
}, },
"extensions": [ "customizations": {
// Ensure we have IntelliSense in VSCode when running inside container "vscode": {
"ms-python.python" "extensions": [
], // Ensure we have IntelliSense in VSCode when running inside container
"ms-python.python"
]
}
},
"workspaceFolder": "/workspaces/accelerate", "workspaceFolder": "/workspaces/accelerate",
// Need git for VSCode to color code modifications. Only runs when building environment. // Need git for VSCode to color code modifications. Only runs when building environment.
"onCreateCommand": "apt-get update && apt-get install -y git && pip install -e '.[dev]'" "onCreateCommand": "apt-get update && apt-get install -y git && pip install -e '.[dev]'"