Pillow/.pre-commit-config.yaml

47 lines
1.1 KiB
YAML
Raw Normal View History

2020-02-05 18:59:04 +03:00
repos:
- repo: https://github.com/psf/black
rev: 22.3.0
2020-02-05 18:59:04 +03:00
hooks:
- id: black
2021-10-15 13:07:53 +03:00
args: ["--target-version", "py37"]
2020-02-05 18:59:04 +03:00
# Only .py files, until https://github.com/psf/black/issues/402 resolved
files: \.py$
types: []
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
hooks:
- id: isort
- repo: https://github.com/asottile/yesqa
rev: v1.3.0
hooks:
- id: yesqa
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.1.13
hooks:
- id: remove-tabs
exclude: (Makefile$|\.bat$|\.cmake$|\.eps$|\.fits$|\.opt$)
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
2020-02-05 18:59:04 +03:00
hooks:
- id: flake8
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
2020-02-05 18:59:04 +03:00
hooks:
- id: python-check-blanket-noqa
- id: rst-backticks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
2020-02-05 18:59:04 +03:00
hooks:
- id: check-merge-conflict
- id: check-yaml
2021-08-12 15:36:41 +03:00
ci:
autoupdate_schedule: quarterly