mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
1fc92f8ab1
updates: - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.4.0...v4.5.0) - [github.com/psf/black: 23.7.0 → 23.11.0](https://github.com/psf/black/compare/23.7.0...23.11.0) - [github.com/astral-sh/ruff-pre-commit: v0.1.4 → v0.1.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.1.4...v0.1.6) - [github.com/pre-commit/mirrors-mypy: v1.6.1 → v1.7.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.6.1...v1.7.1)
69 lines
1.7 KiB
YAML
69 lines
1.7 KiB
YAML
exclude: 'src/pip/_vendor/'
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.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
|
|
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.11.0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.1.6
|
|
hooks:
|
|
- id: ruff
|
|
args: [--fix, --exit-non-zero-on-fix]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.7.1
|
|
hooks:
|
|
- id: mypy
|
|
exclude: tests/data
|
|
args: ["--pretty", "--show-error-codes"]
|
|
additional_dependencies: [
|
|
'keyring==24.2.0',
|
|
'nox==2023.4.22',
|
|
'pytest',
|
|
'types-docutils==0.20.0.3',
|
|
'types-setuptools==68.2.0.0',
|
|
'types-freezegun==1.1.10',
|
|
'types-six==1.16.21.9',
|
|
'types-pyyaml==6.0.12.12',
|
|
]
|
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
rev: v1.10.0
|
|
hooks:
|
|
- id: python-no-log-warn
|
|
- id: python-no-eval
|
|
- id: rst-backticks
|
|
files: .*\.rst$
|
|
types: [file]
|
|
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/
|
|
|
|
ci:
|
|
autofix_prs: false
|
|
autoupdate_commit_msg: 'pre-commit autoupdate'
|
|
autoupdate_schedule: monthly
|