.pre-commit-config.yaml 3.44 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# To use:
#
#     pre-commit run -a
#
# Or:
#
#     pre-commit install  # (runs every time you commit in git)
#
# To update this file:
#
#     pre-commit autoupdate
#
# See https://github.com/pre-commit/pre-commit

15
repos:
16
# Standard hooks
17
- repo: https://github.com/pre-commit/pre-commit-hooks
18
  rev: v4.1.0
19
20
21
  hooks:
  - id: check-added-large-files
  - id: check-case-conflict
22
  - id: check-docstring-first
23
24
  - id: check-merge-conflict
  - id: check-symlinks
25
  - id: check-toml
26
27
28
29
30
31
32
  - id: check-yaml
  - id: debug-statements
  - id: end-of-file-fixer
  - id: mixed-line-ending
  - id: requirements-txt-fixer
  - id: trailing-whitespace
  - id: fix-encoding-pragma
33
    exclude: ^noxfile.py$
34

35
- repo: https://github.com/asottile/pyupgrade
36
  rev: v2.31.0
37
38
39
  hooks:
  - id: pyupgrade

40
- repo: https://github.com/PyCQA/isort
41
  rev: 5.10.1
42
43
44
  hooks:
  - id: isort

45
46
# Black, the code formatter, natively supports pre-commit
- repo: https://github.com/psf/black
47
  rev: 21.12b0 # Keep in sync with blacken-docs
48
49
  hooks:
  - id: black
50
51

- repo: https://github.com/asottile/blacken-docs
52
  rev: v1.12.0
53
54
55
  hooks:
  - id: blacken-docs
    additional_dependencies:
56
    - black==21.12b0 # keep in sync with black hook
57
58

# Changes tabs to spaces
59
- repo: https://github.com/Lucas-C/pre-commit-hooks
60
  rev: v1.1.10
61
62
63
  hooks:
  - id: remove-tabs

64
65
66
67
68
69
# Autoremoves unused imports
- repo: https://github.com/hadialqattan/pycln
  rev: v1.1.0
  hooks:
  - id: pycln

70
71
72
73
74
75
76
77
78
79
- repo: https://github.com/pre-commit/pygrep-hooks
  rev: v1.9.0
  hooks:
  - id: python-check-blanket-noqa
  - id: python-check-blanket-type-ignore
  - id: python-no-log-warn
  - id: rst-backticks
  - id: rst-directive-colons
  - id: rst-inline-touching-normal

80
# Flake8 also supports pre-commit natively (same author)
81
- repo: https://github.com/PyCQA/flake8
82
  rev: 4.0.1
83
84
  hooks:
  - id: flake8
85
86
87
    additional_dependencies: &flake8_dependencies
      - flake8-bugbear
      - pep8-naming
88
    exclude: ^(docs/.*|tools/.*)$
89

90
- repo: https://github.com/asottile/yesqa
91
  rev: v1.3.0
92
93
94
95
  hooks:
  - id: yesqa
    additional_dependencies: *flake8_dependencies

96
# CMake formatting
97
- repo: https://github.com/cheshirekow/cmake-format-precommit
Henry Schreiner's avatar
Henry Schreiner committed
98
  rev: v0.6.13
99
100
101
  hooks:
  - id: cmake-format
    additional_dependencies: [pyyaml]
Henry Schreiner's avatar
Henry Schreiner committed
102
103
    types: [file]
    files: (\.cmake|CMakeLists.txt)(.in)?$
104

105
106
# Check static types with mypy
- repo: https://github.com/pre-commit/mirrors-mypy
107
  rev: v0.930
108
109
110
111
  hooks:
  - id: mypy
    # Running per-file misbehaves a bit, so just run on all files, it's fast
    pass_filenames: false
112
    additional_dependencies: [typed_ast]
113

114
115
# Checks the manifest for missing files (native support)
- repo: https://github.com/mgedmin/check-manifest
116
  rev: "0.47"
117
118
119
120
121
122
  hooks:
  - id: check-manifest
    # This is a slow hook, so only run this if --hook-stage manual is passed
    stages: [manual]
    additional_dependencies: [cmake, ninja]

123
124
125
126
- repo: https://github.com/codespell-project/codespell
  rev: v2.1.0
  hooks:
  - id: codespell
127
128
    exclude: ".supp$"
    args: ["-L", "nd,ot,thist"]
129

130
- repo: https://github.com/shellcheck-py/shellcheck-py
131
  rev: v0.8.0.3
132
133
  hooks:
  - id: shellcheck
134

135
# The original pybind11 checks for a few C++ style items
136
137
138
139
140
- repo: local
  hooks:
  - id: disallow-caps
    name: Disallow improper capitalization
    language: pygrep
141
    entry: PyBind|Numpy|Cmake|CCache|PyTest
142
143
    exclude: .pre-commit-config.yaml

144
145
146
147
148
149
150
151
- repo: local
  hooks:
  - id: check-style
    name: Classic check-style
    language: system
    types:
    - c++
    entry: ./tools/check-style.sh