Merge issues fixed
All checks were successful
ci/woodpecker/pr/check Pipeline was successful

This commit is contained in:
Tasnim Kabir Sadik
2026-05-02 21:46:16 +06:00
parent 04e5dc652f
commit 06b4a8cbcb
12 changed files with 216 additions and 23 deletions

25
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,25 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.10
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.20.0
hooks:
- id: mypy
additional_dependencies:
- pydantic>=2.12.5
- httpx>=0.28.1
- httpx-ws>=0.9.0
- email-validator>=2.3.0
- repo: local
hooks:
- id: unit-tests
name: unit tests
entry: uv run pytest -m "not integration" -x -q
language: system
pass_filenames: false
always_run: true