preprocessing/.pre-commit-config.yaml
2025-12-15 13:47:28 +01:00

22 lines
516 B
YAML

repos:
- repo: https://github.com/psf/black
rev: stable
hooks:
- id: black
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.1.15
hooks:
- id: ruff
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
hooks:
- id: mypy
additional_dependencies: [ types-PyYAML ]
- repo: local
hooks:
- id: run-pytest
name: Run pytest
entry: pytest tests/ -v
language: system
pass_filenames: false
always_run: true