Merge pull request #8227 from pradyunsg/linter-updates

This commit is contained in:
Pradyun Gedam 2020-05-13 02:31:02 +05:30 committed by GitHub
commit 0adeeef51e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 9 deletions

View File

@ -2,7 +2,7 @@ exclude: 'src/pip/_vendor/'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
rev: v2.5.0
hooks:
- id: check-builtin-literals
- id: check-added-large-files
@ -12,12 +12,16 @@ repos:
- id: debug-statements
- id: end-of-file-fixer
exclude: WHEEL
- id: flake8
exclude: tests/data
- id: forbid-new-submodules
- id: trailing-whitespace
exclude: .patch
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.9
hooks:
- id: flake8
exclude: tests/data
- repo: https://github.com/timothycrosley/isort
rev: 4.3.21
hooks:
@ -25,18 +29,18 @@ repos:
files: \.py$
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.750
rev: v0.760
hooks:
- id: mypy
exclude: docs|tests
args: []
args: ["--pretty"]
- id: mypy
name: mypy, for Py2
name: mypy, for Python 2
exclude: noxfile.py|tools/automation/release|docs|tests
args: ["-2"]
args: ["--pretty", "-2"]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.4.1
rev: v1.5.1
hooks:
- id: python-no-log-warn
- id: python-no-eval
@ -48,6 +52,6 @@ repos:
exclude: NEWS.rst
- repo: https://github.com/mgedmin/check-manifest
rev: '0.39'
rev: '0.42'
hooks:
- id: check-manifest