Skip to content
Snippets Groups Projects
Unverified Commit 8896c164 authored by lkshrk's avatar lkshrk Committed by GitHub
Browse files

Update .devcontainer.json structure (#96537)

parent db83dc9a
No related branches found
No related tags found
No related merge requests found
...@@ -7,42 +7,46 @@ ...@@ -7,42 +7,46 @@
"containerEnv": { "DEVCONTAINER": "1" }, "containerEnv": { "DEVCONTAINER": "1" },
"appPort": ["8123:8123"], "appPort": ["8123:8123"],
"runArgs": ["-e", "GIT_EDITOR=code --wait"], "runArgs": ["-e", "GIT_EDITOR=code --wait"],
"extensions": [ "customizations": {
"ms-python.vscode-pylance", "vscode": {
"visualstudioexptteam.vscodeintellicode", "extensions": [
"redhat.vscode-yaml", "ms-python.vscode-pylance",
"esbenp.prettier-vscode", "visualstudioexptteam.vscodeintellicode",
"GitHub.vscode-pull-request-github" "redhat.vscode-yaml",
], "esbenp.prettier-vscode",
// Please keep this file in sync with settings in home-assistant/.vscode/settings.default.json "GitHub.vscode-pull-request-github"
"settings": { ],
"python.pythonPath": "/usr/local/bin/python", // Please keep this file in sync with settings in home-assistant/.vscode/settings.default.json
"python.linting.enabled": true, "settings": {
"python.linting.pylintEnabled": true, "python.pythonPath": "/usr/local/bin/python",
"python.formatting.blackPath": "/usr/local/bin/black", "python.linting.enabled": true,
"python.linting.pycodestylePath": "/usr/local/bin/pycodestyle", "python.linting.pylintEnabled": true,
"python.linting.pydocstylePath": "/usr/local/bin/pydocstyle", "python.formatting.blackPath": "/usr/local/bin/black",
"python.linting.mypyPath": "/usr/local/bin/mypy", "python.linting.pycodestylePath": "/usr/local/bin/pycodestyle",
"python.linting.pylintPath": "/usr/local/bin/pylint", "python.linting.pydocstylePath": "/usr/local/bin/pydocstyle",
"python.formatting.provider": "black", "python.linting.mypyPath": "/usr/local/bin/mypy",
"python.testing.pytestArgs": ["--no-cov"], "python.linting.pylintPath": "/usr/local/bin/pylint",
"editor.formatOnPaste": false, "python.formatting.provider": "black",
"editor.formatOnSave": true, "python.testing.pytestArgs": ["--no-cov"],
"editor.formatOnType": true, "editor.formatOnPaste": false,
"files.trimTrailingWhitespace": true, "editor.formatOnSave": true,
"terminal.integrated.profiles.linux": { "editor.formatOnType": true,
"zsh": { "files.trimTrailingWhitespace": true,
"path": "/usr/bin/zsh" "terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/zsh"
}
},
"terminal.integrated.defaultProfile.linux": "zsh",
"yaml.customTags": [
"!input scalar",
"!secret scalar",
"!include_dir_named scalar",
"!include_dir_list scalar",
"!include_dir_merge_list scalar",
"!include_dir_merge_named scalar"
]
} }
}, }
"terminal.integrated.defaultProfile.linux": "zsh",
"yaml.customTags": [
"!input scalar",
"!secret scalar",
"!include_dir_named scalar",
"!include_dir_list scalar",
"!include_dir_merge_list scalar",
"!include_dir_merge_named scalar"
]
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment