You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gb/.pre-commit-config.yaml

27 lines
562 B

repos:
- repo: local
hooks:
- id: black
name: black
language: system
entry: python -m black
types: [python]
- id: pytest
name: pytest
language: system
pass_filenames: false
entry: python -m pytest -q
types: [python]
- id: flake8
name: flake8
language: system
entry: python -m flake8
types: [python]
exclude: ^doc/conf.py
- id: mypy
name: mypy
language: system
entry: python -m mypy
types: [python]
exclude: ^doc/conf.py|^test