data.home-assistant/.devcontainer/devcontainer.json

30 lines
833 B
JSON

{
"name": "data.home-assistant",
"dockerFile": "Dockerfile",
"appPort": [
3000
],
"postCreateCommand": "yarn install",
"extensions": [
"davidanson.vscode-markdownlint",
"editorconfig.editorconfig",
"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",
"[markdown]":{
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
}
}
}