summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 3661edb15d1a32bb2baa1c5b6c23672ee2f71165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
exclude: 'src/pip/_vendor/'

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
  rev: v3.4.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: 20.8b1
  hooks:
  - id: black
    exclude: |
      (?x)
        ^src/pip/_internal/commands|
        ^src/pip/_internal/index|
        ^src/pip/_internal/models|
        ^src/pip/_internal/network|
        ^src/pip/_internal/operations|
        ^src/pip/_internal/req|
        ^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|
        # A blank ignore, to avoid merge conflicts later.
        ^$


- repo: https://gitlab.com/pycqa/flake8
  rev: 3.8.4
  hooks:
  - id: flake8
    additional_dependencies: [
        'flake8-bugbear==20.1.4',
        'flake8-logging-format==0.6.0',
    ]
    exclude: tests/data

- repo: https://github.com/PyCQA/isort
  rev: 5.7.0
  hooks:
  - id: isort
    files: \.py$

- repo: https://github.com/pre-commit/mirrors-mypy
  rev: v0.800
  hooks:
  - id: mypy
    exclude: tests
    args: ["--pretty"]
    additional_dependencies: ['nox==2020.12.31']

- repo: https://github.com/pre-commit/pygrep-hooks
  rev: v1.7.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/

- repo: https://github.com/mgedmin/check-manifest
  rev: '0.46'
  hooks:
  - id: check-manifest
    stages: [manual]