Fix devcontainer spacing

This commit is contained in:
emisargent 2023-03-16 17:49:27 +00:00
parent c5ec09dc54
commit 35e9d5a783

View file

@ -1,5 +1,5 @@
{ {
"name": "pallets/flask", "name": "pallets/flask",
"image": "mcr.microsoft.com/devcontainers/python:3", "image": "mcr.microsoft.com/devcontainers/python:3",
"customizations": { "customizations": {
"codespaces": { "codespaces": {
@ -7,15 +7,15 @@
}, },
"vscode": { "vscode": {
"settings": { "settings": {
"python.defaultInterpreterPath": "${workspaceFolder}/.venv", "python.defaultInterpreterPath": "${workspaceFolder}/.venv",
"python.terminal.activateEnvInCurrentTerminal": true, "python.terminal.activateEnvInCurrentTerminal": true,
"python.terminal.launchArgs": [ "python.terminal.launchArgs": [
"-X", "-X",
"dev" "dev"
], ],
"terminal.integrated.environmentChangesRelaunch": false "terminal.integrated.environmentChangesRelaunch": false
} }
} }
}, },
"onCreateCommand": "sudo chmod +x .devcontainer/on-create-command.sh && .devcontainer/on-create-command.sh" "onCreateCommand": "sudo chmod +x .devcontainer/on-create-command.sh && .devcontainer/on-create-command.sh"
} }