mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 18:51:23 +00:00
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"editor.renderWhitespace": "boundary",
|
|
"files.associations": {
|
|
"*.dash": "yaml",
|
|
"**/esphome/*.yaml": "yaml",
|
|
"*.yaml": "home-assistant"
|
|
},
|
|
"files.watcherExclude": {
|
|
".nfs**": true,
|
|
".Trash-0/**": true,
|
|
"**/__pycache__/**": true,
|
|
"**/._*": true,
|
|
"**/.git/objects/**": true,
|
|
"**/.git/subtree-cache/**": true,
|
|
"**/*.db-shm": true,
|
|
"**/*.db-wal": true,
|
|
"**/*.db": true,
|
|
"**/*.log": true,
|
|
"**/deps/**": true,
|
|
"**/OZW_Log.txt": true,
|
|
"**/pyozw.sqlite": true
|
|
},
|
|
"search.exclude": {
|
|
"**/__pycache__/**": true,
|
|
"**/deps/**": true,
|
|
".Trash-0/**": true
|
|
},
|
|
"terminal.integrated.copyOnSelection": true,
|
|
"yaml.customTags": [
|
|
"!env_var scalar",
|
|
"!include_dir_list scalar",
|
|
"!include_dir_merge_list scalar",
|
|
"!include_dir_merge_named scalar",
|
|
"!include_dir_named scalar",
|
|
"!include scalar",
|
|
"!secret scalar"
|
|
],
|
|
"yaml.format.enable": true,
|
|
"[yaml]": {
|
|
"editor.autoIndent": true,
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2,
|
|
"editor.quickSuggestions": {
|
|
"other": true,
|
|
"comments": false,
|
|
"strings": true
|
|
}
|
|
},
|
|
"terminal.integrated.shell.linux": "/usr/bin/zsh",
|
|
"esphome.validator": "dashboard",
|
|
"esphome.dashboardUri": "15ef4d2f-esphome.local.hass.io:6052",
|
|
"workbench.iconTheme": "vscode-icons",
|
|
"vsicons.dontShowNewVersionMessage": true
|
|
}
|