core/.devcontainer/devcontainer.json

35 lines
934 B
JSON
Raw Normal View History

// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
"name": "Home Assistant Dev",
"context": "..",
"dockerFile": "../Dockerfile.dev",
"postCreateCommand": "pip3 install -e .",
2019-07-02 08:39:02 +00:00
"appPort": 8123,
"runArgs": [
"-e",
"GIT_EDITOR=\"code --wait\""
2019-07-02 08:39:02 +00:00
],
"extensions": [
2019-07-02 12:31:06 +00:00
"ms-python.python",
"ms-azure-devops.azure-pipelines",
"redhat.vscode-yaml"
],
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.linting.pylintEnabled": true,
2019-07-02 11:32:35 +00:00
"python.linting.enabled": true,
2019-07-30 23:59:12 +00:00
"python.formatting.provider": "black",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
2019-07-02 11:34:50 +00:00
"files.trimTrailingWhitespace": true,
"terminal.integrated.shell.linux": "/bin/bash",
"yaml.customTags": [
"!secret scalar",
"!include_dir_named scalar",
"!include_dir_list scalar",
"!include_dir_merge_list scalar",
"!include_dir_merge_named scalar"
]
}
}