Loose some fat on the VSCode dev container (#13278)

This commit is contained in:
Franck Nijhof 2020-05-03 23:27:28 +02:00 committed by GitHub
parent 3806eac05c
commit 062db1966f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,30 +1,22 @@
{ {
"name": "home-assistant.io", "name": "home-assistant.io",
"dockerFile": "Dockerfile", "dockerFile": "Dockerfile",
"appPort": [ "appPort": [4000],
4000 "postCreateCommand": "bundle install",
], "extensions": [
"postCreateCommand": "bundle install", "davidanson.vscode-markdownlint",
"extensions": [ "editorconfig.editorconfig",
"davidanson.vscode-markdownlint", "mrmlnc.vscode-scss",
"eamodio.gitlens", "rebornix.Ruby",
"editorconfig.editorconfig", "streetsidesoftware.code-spell-checker",
"github.vscode-pull-request-github", "yzhang.markdown-all-in-one"
"mrmlnc.vscode-scss", ],
"ms-vsliveshare.vsliveshare", "settings": {
"rebornix.Ruby", "editor.rulers": [80, 100, 120],
"streetsidesoftware.code-spell-checker", "editor.renderWhitespace": "boundary",
"yzhang.markdown-all-in-one" "errorLens.gutterIconsEnabled": true,
], "errorLens.addAnnotationTextPrefixes": false,
"settings": { "errorLens.enabledDiagnosticLevels": ["error", "warning"],
"editor.rulers": [80, 100, 120], "terminal.integrated.shell.linux": "/bin/bash"
"editor.renderWhitespace": "boundary", }
"errorLens.gutterIconsEnabled": true,
"errorLens.addAnnotationTextPrefixes": false,
"errorLens.enabledDiagnosticLevels": [
"error",
"warning"
],
"terminal.integrated.shell.linux": "/bin/bash"
}
} }