mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-05-28 18:43:40 +00:00
Refactor the contribution guidelines to enhance readability and consistency in formatting. Adjusted code blocks and list formatting for better visual structure. Impact: Contributors will find it easier to follow the guidelines when contributing to the project. --- docs(README): update automation examples for better readability Reformatted YAML automation examples in the README to improve clarity and consistency. Indentation and structure were adjusted for better understanding. Impact: Users will have clearer examples for setting up automations with the integration. --- chore(manifest): streamline manifest file formatting Consolidated formatting in the manifest file for consistency. Adjusted the codeowners and requirements sections for a cleaner look. User-Impact: none --- chore(pyproject): enhance project configuration for better linting and testing Updated the pyproject.toml file to improve linting configurations and testing options. Added specific rules for ruff and pytest to align with project standards. User-Impact: none --- chore(manifest_schema): simplify JSON schema for integration manifest Refined the manifest schema by consolidating enum definitions for better readability and maintenance. User-Impact: none --- chore(prettier): add Prettier configuration for consistent code formatting Introduced a Prettier configuration file to standardize code formatting across the project, ensuring consistency in style. User-Impact: none
22 lines
506 B
Text
22 lines
506 B
Text
# Ignore Python files – handled by Ruff/Black
|
||
*.py
|
||
*.pyi
|
||
|
||
# Ignore Home Assistant compiled files
|
||
__pycache__/
|
||
*.pyc
|
||
|
||
# Ignore virtual environments or dependencies
|
||
.venv/
|
||
env/
|
||
venv/
|
||
|
||
# Ignore local HA dev instance config (not production code)
|
||
config/
|
||
|
||
# Ignore YAML schemas (structural files with specific formatting conventions)
|
||
schemas/yaml/
|
||
|
||
# Ignore Docusaurus documentation sites – they have their own toolchain
|
||
# and Prettier reformats <details> blocks inside lists in a way that breaks MDX
|
||
docs/
|