Initialize hasspy project with basic structure and MQTT client implementation

This commit is contained in:
Edgar P. Burkhart 2025-03-08 23:39:33 +01:00
commit fa8bb1d8a9
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
9 changed files with 275 additions and 0 deletions

23
.pre-commit-config.yaml Normal file
View file

@ -0,0 +1,23 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pycqa/isort
rev: 6.0.1
hooks:
- id: isort
name: isort (python)
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.10
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
hooks:
- id: mypy
args: [--strict]
additional_dependencies: [paho-mqtt]