Skip to content

Commit

Permalink
Loose some fat on the VSCode dev container (home-assistant#13278)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored May 3, 2020
1 parent 3806eac commit 062db19
Showing 1 changed file with 20 additions and 28 deletions.
48 changes: 20 additions & 28 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit 062db19

Please sign in to comment.