Pillow/.pre-commit-config.yaml

85 lines
1.9 KiB
YAML
Raw Normal View History

2020-02-05 18:59:04 +03:00
repos:
2023-09-09 13:07:12 +03:00
- repo: https://github.com/asottile/pyupgrade
rev: v3.13.0
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.9.1
2020-02-05 18:59:04 +03:00
hooks:
- id: black
2023-04-01 15:58:08 +03:00
args: [--target-version=py38]
2020-02-05 18:59:04 +03:00
- repo: https://github.com/PyCQA/isort
2023-01-29 12:05:35 +03:00
rev: 5.12.0
hooks:
- id: isort
2022-12-13 19:32:55 +03:00
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
2022-12-13 19:32:55 +03:00
hooks:
- id: bandit
args: [--severity-level=high]
files: ^src/
- repo: https://github.com/asottile/yesqa
rev: v1.5.0
hooks:
- id: yesqa
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.4
hooks:
- id: remove-tabs
2023-04-03 23:07:45 +03:00
exclude: (Makefile$|\.bat$|\.cmake$|\.eps$|\.fits$|\.gd$|\.opt$)
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
2020-02-05 18:59:04 +03:00
hooks:
- id: flake8
additional_dependencies:
2023-09-09 14:04:47 +03:00
[flake8-2020, flake8-errmsg, flake8-implicit-str-concat, flake8-logging]
2020-02-05 18:59:04 +03:00
- repo: https://github.com/pre-commit/pygrep-hooks
2023-01-29 12:05:35 +03:00
rev: v1.10.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.4.0
2020-02-05 18:59:04 +03:00
hooks:
- id: check-executables-have-shebangs
2020-02-05 18:59:04 +03:00
- id: check-merge-conflict
2022-09-08 20:19:13 +03:00
- id: check-json
2023-05-27 11:52:03 +03:00
- id: check-toml
2020-02-05 18:59:04 +03:00
- id: check-yaml
2023-09-09 14:08:40 +03:00
- id: end-of-file-fixer
exclude: ^Tests/images/
2023-09-09 14:12:47 +03:00
- id: trailing-whitespace
exclude: ^.github/.*TEMPLATE|^Tests/(fonts|images)/
2021-08-12 15:36:41 +03:00
2022-05-29 19:10:35 +03:00
- repo: https://github.com/sphinx-contrib/sphinx-lint
rev: v0.6.8
2022-05-29 19:10:35 +03:00
hooks:
- id: sphinx-lint
2023-05-27 11:52:03 +03:00
- repo: https://github.com/tox-dev/pyproject-fmt
rev: 1.2.0
2023-05-27 11:52:03 +03:00
hooks:
- id: pyproject-fmt
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.14
2023-05-27 11:52:03 +03:00
hooks:
- id: validate-pyproject
2022-12-13 19:04:30 +03:00
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: 1.3.1
2022-12-13 19:04:30 +03:00
hooks:
- id: tox-ini-fmt
2021-08-12 15:36:41 +03:00
ci:
2022-05-29 13:57:19 +03:00
autoupdate_schedule: monthly