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

29 lines
780 B
YAML
Raw Permalink Normal View History

2022-01-05 23:20:28 +00:00
---
repos:
- repo: https://github.com/psf/black
2022-04-05 03:14:57 +00:00
rev: 22.3.0
2022-01-05 23:20:28 +00:00
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.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/asottile/reorder_python_imports
2022-04-05 03:14:57 +00:00
rev: v3.0.1
2022-01-05 23:20:28 +00:00
hooks:
- id: reorder-python-imports
- repo: https://github.com/pre-commit/mirrors-mypy
2022-04-05 03:14:57 +00:00
rev: v0.942
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"