From 062db1966fb6c4dae6b261ca2e1f1d97e1c9e98e Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 3 May 2020 23:27:28 +0200 Subject: [PATCH] Loose some fat on the VSCode dev container (#13278) --- .devcontainer/devcontainer.json | 48 ++++++++++++++------------------- 1 file changed, 20 insertions(+), 28 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 399a22a2be6..e19189152ea 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,30 +1,22 @@ { - "name": "home-assistant.io", - "dockerFile": "Dockerfile", - "appPort": [ - 4000 - ], - "postCreateCommand": "bundle install", - "extensions": [ - "davidanson.vscode-markdownlint", - "eamodio.gitlens", - "editorconfig.editorconfig", - "github.vscode-pull-request-github", - "mrmlnc.vscode-scss", - "ms-vsliveshare.vsliveshare", - "rebornix.Ruby", - "streetsidesoftware.code-spell-checker", - "yzhang.markdown-all-in-one" - ], - "settings": { - "editor.rulers": [80, 100, 120], - "editor.renderWhitespace": "boundary", - "errorLens.gutterIconsEnabled": true, - "errorLens.addAnnotationTextPrefixes": false, - "errorLens.enabledDiagnosticLevels": [ - "error", - "warning" - ], - "terminal.integrated.shell.linux": "/bin/bash" - } + "name": "home-assistant.io", + "dockerFile": "Dockerfile", + "appPort": [4000], + "postCreateCommand": "bundle install", + "extensions": [ + "davidanson.vscode-markdownlint", + "editorconfig.editorconfig", + "mrmlnc.vscode-scss", + "rebornix.Ruby", + "streetsidesoftware.code-spell-checker", + "yzhang.markdown-all-in-one" + ], + "settings": { + "editor.rulers": [80, 100, 120], + "editor.renderWhitespace": "boundary", + "errorLens.gutterIconsEnabled": true, + "errorLens.addAnnotationTextPrefixes": false, + "errorLens.enabledDiagnosticLevels": ["error", "warning"], + "terminal.integrated.shell.linux": "/bin/bash" + } }