adaptive-lighting/.vscode/tasks.json
2026-01-10 13:03:03 +00:00

23 lines
614 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Home Assistant on port 8123",
"type": "shell",
"command": "scripts/develop",
"problemMatcher": []
},
{
"label": "Lint (run pre-commit hooks)",
"type": "shell",
"command": "scripts/lint",
"problemMatcher": []
},
{
"label": "Sync strings (README, services.yaml, strings.json, etc.)",
"type": "shell",
"command": "scripts/sync-strings",
"problemMatcher": []
}
]
}