Skip to content

Commit

Permalink
update esphome version
Browse files Browse the repository at this point in the history
  • Loading branch information
dentra committed Feb 12, 2023
1 parent 8e67e4f commit 3843d75
Showing 1 changed file with 57 additions and 53 deletions.
110 changes: 57 additions & 53 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"build": {
"args": {
// ESPHome version
"esphome_version": "2022.12.3",
"esphome_version": "2022.12.8",
// additional APT dependicies
"apt_deps": "bash-completion less",
// additional PIP dependicies
Expand All @@ -15,60 +15,64 @@
"ESPHOME_DASHBOARD_USE_PING=1"
],
//"appPort": 6052,
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"diffEditor.ignoreTrimWhitespace": true,
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": false,
"python.pythonPath": "/usr/bin/python3",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.languageServer": "Pylance",
"python.formatting.provider": "black",
"yaml.customTags": [
"!secret scalar",
"!lambda scalar",
"!include_dir_named scalar",
"!include_dir_list scalar",
"!include_dir_merge_list scalar",
"!include_dir_merge_named scalar"
],
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.pyc": {
"when": "$(basename).py"
"customizations": {
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"diffEditor.ignoreTrimWhitespace": true,
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": false,
"python.pythonPath": "/usr/bin/python3",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.languageServer": "Pylance",
"python.formatting.provider": "black",
"yaml.customTags": [
"!secret scalar",
"!lambda scalar",
"!include_dir_named scalar",
"!include_dir_list scalar",
"!include_dir_merge_list scalar",
"!include_dir_merge_named scalar"
],
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.pyc": {
"when": "$(basename).py"
},
"**/__pycache__": true,
"**/.esphome": false,
".pio": true
},
"files.associations": {
"**/.vscode/*.json": "jsonc"
},
"C_Cpp.clang_format_path": "/usr/bin/clang-format-11"
},
"**/__pycache__": true,
"**/.esphome": false,
".pio": true
},
"files.associations": {
"**/.vscode/*.json": "jsonc"
},
"C_Cpp.clang_format_path": "/usr/bin/clang-format-11"
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
// cpp
"ms-vscode.cpptools",
// python
"ms-python.python",
"ms-python.vscode-pylance",
"visualstudioexptteam.vscodeintellicode",
// yaml
"redhat.vscode-yaml",
// esphome yaml
"esphome.esphome-vscode",
// editorconfig
"editorconfig.editorconfig",
// fixme and todo tree
"Gruntfuggly.todo-tree"
]
}
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
// cpp
"ms-vscode.cpptools",
// python
"ms-python.python",
"ms-python.vscode-pylance",
"visualstudioexptteam.vscodeintellicode",
// yaml
"redhat.vscode-yaml",
// esphome yaml
"esphome.esphome-vscode",
// editorconfig
"editorconfig.editorconfig",
// fixme and todo tree
"Gruntfuggly.todo-tree"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
"postCreateCommand": [
Expand Down

0 comments on commit 3843d75

Please sign in to comment.