release-gitter/.pre-commit-config.yaml

29 lines
744 B
YAML
Raw Permalink Normal View History

2022-01-05 23:20:28 +00:00
---
repos:
- repo: https://github.com/psf/black
2024-05-14 20:57:13 +00:00
rev: 24.4.2
2022-01-05 23:20:28 +00:00
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
2024-05-14 20:57:13 +00:00
rev: v4.6.0
2022-01-05 23:20:28 +00:00
hooks:
- id: check-added-large-files
- id: check-merge-conflict
- id: debug-statements
- id: end-of-file-fixer
- id: trailing-whitespace
- id: name-tests-test
exclude: tests/(common.py|util.py|(helpers|integration/factories)/(.+).py)
- repo: https://github.com/pycqa/isort
rev: 5.13.2
2022-01-05 23:20:28 +00:00
hooks:
- id: isort
2022-01-05 23:20:28 +00:00
- repo: https://github.com/pre-commit/mirrors-mypy
2024-05-14 20:57:13 +00:00
rev: v1.10.0
2022-01-05 23:20:28 +00:00
hooks:
- id: mypy
exclude: docs/
2022-01-06 21:49:07 +00:00
additional_dependencies:
- "types-requests"
- "types-toml"