DeepCritical / .pre-commit-config.yaml
VibecoderMcSwaggins's picture
fix: resolve mypy divergence between make check and pre-commit
cace02f
raw
history blame
433 Bytes
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.4
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.0
hooks:
- id: mypy
files: ^src/
additional_dependencies:
- pydantic>=2.7
- pydantic-settings>=2.2
- tenacity>=8.2
args: [--ignore-missing-imports]