2019-06-23 19:18:33 +00:00
|
|
|
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
|
|
|
|
{
|
|
|
|
"name": "Home Assistant Dev",
|
|
|
|
"context": "..",
|
2019-08-20 17:37:55 +00:00
|
|
|
"dockerFile": "../Dockerfile.dev",
|
2019-06-23 19:18:33 +00:00
|
|
|
"postCreateCommand": "pip3 install -e .",
|
2019-07-02 08:39:02 +00:00
|
|
|
"appPort": 8123,
|
|
|
|
"runArgs": [
|
2019-08-20 17:37:55 +00:00
|
|
|
"-e",
|
|
|
|
"GIT_EDITOR=\"code --wait\""
|
2019-07-02 08:39:02 +00:00
|
|
|
],
|
2019-06-23 19:18:33 +00:00
|
|
|
"extensions": [
|
2019-07-02 12:31:06 +00:00
|
|
|
"ms-python.python",
|
|
|
|
"ms-azure-devops.azure-pipelines",
|
|
|
|
"redhat.vscode-yaml"
|
2019-06-23 19:18:33 +00:00
|
|
|
],
|
|
|
|
"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,
|
2019-07-27 08:43:18 +00:00
|
|
|
"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"
|
|
|
|
]
|
2019-06-23 19:18:33 +00:00
|
|
|
}
|
2019-08-20 17:37:55 +00:00
|
|
|
}
|