From 157740e374a8c79785c2ad615d71b702f509c062 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 4 Jul 2019 17:28:50 +0200 Subject: [PATCH] Update devcontainer.json --- .devcontainer/devcontainer.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index a27fe99b0..6979f8569 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,6 +3,9 @@ "name": "Hass.io dev", "context": "..", "dockerFile": "Dockerfile", + "runArgs": [ + "-e", "GIT_EDTIOR='code --wait'" + ], "extensions": [ "ms-python.python" ], @@ -13,6 +16,7 @@ "python.formatting.provider": "black", "editor.formatOnPaste": false, "editor.formatOnSave": true, - "editor.formatOnType": true + "editor.formatOnType": true, + "files.trimTrailingWhitespace": true } -} \ No newline at end of file +}