expressive-tts-arena / .pre-commit-config.yaml
zach
Add mypy type checking to pre-commit hook
4431e79
raw
history blame contribute delete
323 Bytes
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.9.5
hooks:
- id: ruff
args: ["--fix"]
types: [python]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
hooks:
- id: mypy
args: ["--ignore-missing-imports"]
types: [python]