graphene/.pre-commit-config.yaml

31 lines
697 B
YAML
Raw Normal View History

2021-08-22 06:18:15 +03:00
default_language_version:
python: python3.9
2021-08-22 06:18:15 +03:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2022-05-06 23:31:31 +03:00
rev: v4.2.0
hooks:
- id: check-merge-conflict
- id: check-json
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
exclude: ^docs/.*$
- id: pretty-format-json
args:
- --autofix
- id: trailing-whitespace
exclude: README.md
- repo: https://github.com/asottile/pyupgrade
2022-05-06 23:31:31 +03:00
rev: v2.32.1
hooks:
- id: pyupgrade
- repo: https://github.com/ambv/black
2022-05-06 23:31:31 +03:00
rev: 22.3.0
hooks:
2021-08-21 18:23:58 +03:00
- id: black
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
hooks:
- id: flake8