2019-09-24 12:32:51 +02:00
|
|
|
exclude: 'src/pip/_vendor/'
|
|
|
|
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2020-09-23 16:20:53 +02:00
|
|
|
rev: v3.2.0
|
2019-09-24 12:32:51 +02:00
|
|
|
hooks:
|
2019-09-25 06:00:23 +02:00
|
|
|
- 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
|
2019-09-24 12:32:51 +02:00
|
|
|
|
2020-09-23 21:06:02 +02:00
|
|
|
- repo: https://github.com/psf/black
|
|
|
|
rev: 20.8b1
|
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
exclude: |
|
|
|
|
(?x)
|
|
|
|
^docs/|
|
|
|
|
^src/pip/_internal/cli|
|
|
|
|
^src/pip/_internal/commands|
|
|
|
|
^src/pip/_internal/distributions|
|
|
|
|
^src/pip/_internal/index|
|
|
|
|
^src/pip/_internal/models|
|
|
|
|
^src/pip/_internal/network|
|
|
|
|
^src/pip/_internal/operations|
|
|
|
|
^src/pip/_internal/req|
|
|
|
|
^src/pip/_internal/resolution|
|
|
|
|
^src/pip/_internal/utils|
|
|
|
|
^src/pip/_internal/vcs|
|
|
|
|
^src/pip/_internal/\w+\.py$|
|
|
|
|
^src/pip/__main__.py$|
|
|
|
|
^tools/|
|
|
|
|
# Tests
|
|
|
|
^tests/conftest.py|
|
|
|
|
^tests/yaml|
|
|
|
|
^tests/lib|
|
|
|
|
^tests/data|
|
|
|
|
^tests/unit|
|
|
|
|
^tests/functional/(?!test_install)|
|
|
|
|
^tests/functional/test_install|
|
|
|
|
# Files in the root of the repository
|
|
|
|
^setup.py|
|
|
|
|
^noxfile.py|
|
|
|
|
# A blank ignore, to avoid merge conflicts later.
|
|
|
|
^$
|
|
|
|
|
|
|
|
|
2020-05-12 15:10:12 +02:00
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
2020-09-23 16:20:53 +02:00
|
|
|
rev: 3.8.3
|
2020-05-12 15:10:12 +02:00
|
|
|
hooks:
|
|
|
|
- id: flake8
|
2020-06-04 23:10:26 +02:00
|
|
|
additional_dependencies: [
|
2020-06-17 17:53:30 +02:00
|
|
|
'flake8-bugbear==20.1.4',
|
|
|
|
'flake8-logging-format==0.6.0',
|
2020-06-04 23:10:26 +02:00
|
|
|
]
|
2020-05-12 15:10:12 +02:00
|
|
|
exclude: tests/data
|
|
|
|
|
2019-09-24 13:49:29 +02:00
|
|
|
- repo: https://github.com/timothycrosley/isort
|
2020-09-23 15:08:01 +02:00
|
|
|
rev: 5.5.3
|
2019-09-24 13:49:29 +02:00
|
|
|
hooks:
|
2019-09-25 06:00:23 +02:00
|
|
|
- id: isort
|
|
|
|
files: \.py$
|
2019-09-24 12:32:51 +02:00
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2020-10-12 12:36:51 +02:00
|
|
|
rev: v0.790
|
2019-09-24 12:32:51 +02:00
|
|
|
hooks:
|
2019-09-25 06:00:23 +02:00
|
|
|
- id: mypy
|
|
|
|
exclude: docs|tests
|
2020-05-12 15:12:33 +02:00
|
|
|
args: ["--pretty"]
|
2019-09-25 06:00:23 +02:00
|
|
|
- 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"]
|
2019-09-24 12:32:51 +02:00
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
2020-09-23 16:21:42 +02:00
|
|
|
rev: v1.6.0
|
2019-09-24 12:32:51 +02:00
|
|
|
hooks:
|
2019-09-25 06:00:23 +02:00
|
|
|
- id: python-no-log-warn
|
|
|
|
- id: python-no-eval
|
|
|
|
- id: rst-backticks
|
2020-04-26 17:10:25 +02:00
|
|
|
files: .*\.rst$
|
2019-09-25 06:00:23 +02:00
|
|
|
types: [file]
|
2020-04-26 17:10:25 +02:00
|
|
|
exclude: NEWS.rst # The errors flagged in NEWS.rst are old.
|
|
|
|
|
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: news-fragment-filenames
|
|
|
|
name: NEWS fragment
|
|
|
|
language: fail
|
|
|
|
entry: NEWS fragment files must be named *.(process|removal|feature|bugfix|vendor|doc|trivial).rst
|
|
|
|
exclude: ^news/(.gitignore|.*\.(process|removal|feature|bugfix|vendor|doc|trivial).rst)
|
|
|
|
files: ^news/
|
2019-09-24 15:06:17 +02:00
|
|
|
|
|
|
|
- repo: https://github.com/mgedmin/check-manifest
|
2020-09-23 16:20:53 +02:00
|
|
|
rev: '0.43'
|
2019-09-24 15:06:17 +02:00
|
|
|
hooks:
|
2019-09-25 06:00:23 +02:00
|
|
|
- id: check-manifest
|