home-assistant.io/.devcontainer/devcontainer.json

31 lines
831 B
JSON

{
"name": "home-assistant.io",
"build": {
"dockerfile": "../Dockerfile",
"context": "..",
"args": {
"VARIANT": "2.7",
"NODE_VERSION": "14"
}
},
"appPort": [4000],
"postCreateCommand": "bundle install && npm install",
"containerEnv": { "DEVCONTAINER": "true" },
"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": "/usr/bin/zsh"
}
}