pip/.pre-commit-config.yaml

58 lines
1.2 KiB
YAML
Raw Normal View History

exclude: 'src/pip/_vendor/'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2020-05-12 15:13:13 +02:00
rev: v2.5.0
hooks:
- id: check-builtin-literals
- id: check-added-large-files
- id: check-case-conflict
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
exclude: WHEEL
- id: forbid-new-submodules
- id: trailing-whitespace
exclude: .patch
2020-05-12 15:10:12 +02:00
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.1
2020-05-12 15:10:12 +02:00
hooks:
- id: flake8
exclude: tests/data
2019-09-24 13:49:29 +02:00
- repo: https://github.com/timothycrosley/isort
rev: 4.3.21
hooks:
- id: isort
files: \.py$
- repo: https://github.com/pre-commit/mirrors-mypy
2020-05-13 22:44:07 +02:00
rev: v0.770
hooks:
- id: mypy
exclude: docs|tests
2020-05-12 15:12:33 +02:00
args: ["--pretty"]
- id: mypy
2020-05-12 15:12:33 +02:00
name: mypy, for Python 2
2019-11-02 21:31:11 +01:00
exclude: noxfile.py|tools/automation/release|docs|tests
2020-05-12 15:12:33 +02:00
args: ["--pretty", "-2"]
- repo: https://github.com/pre-commit/pygrep-hooks
2020-05-12 15:13:13 +02:00
rev: v1.5.1
hooks:
- id: python-no-log-warn
- id: python-no-eval
- id: rst-backticks
# Validate existing ReST files and NEWS fragments.
files: .*\.rst$|^news/.*
types: [file]
# The errors flagged in NEWS.rst are old.
exclude: NEWS.rst
- repo: https://github.com/mgedmin/check-manifest
2020-05-12 15:13:13 +02:00
rev: '0.42'
hooks:
- id: check-manifest