mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
- Introduced a comprehensive refactoring guide detailing when and how to plan major refactorings, including a structured planning process and real-world examples. - Created a README for the planning directory, outlining its purpose, document lifecycle, and best practices for creating planning documents.
37 lines
408 B
Text
37 lines
408 B
Text
# artifacts
|
|
__pycache__
|
|
.pytest*
|
|
*.egg-info
|
|
*/build/*
|
|
*/dist/*
|
|
.venv
|
|
|
|
|
|
# misc
|
|
.coverage
|
|
.vscode
|
|
coverage.xml
|
|
.ruff_cache
|
|
uv.lock
|
|
|
|
|
|
# Home Assistant configuration
|
|
config/*
|
|
!config/configuration.yaml
|
|
|
|
# Home Assistant database and logs
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.log
|
|
home-assistant.log*
|
|
home-assistant_v2.db*
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Planning documents (work-in-progress)
|
|
planning/
|