.pre-commit-config.yaml 2.89 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.0.1
19
20
21
22
23
24
25
26
27
28
29
30
  hooks:
  - id: check-added-large-files
  - id: check-case-conflict
  - id: check-merge-conflict
  - id: check-symlinks
  - 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
31
    exclude: ^noxfile.py$
32

33
- repo: https://github.com/asottile/pyupgrade
34
  rev: v2.25.0
35
36
37
  hooks:
  - id: pyupgrade

38
39
40
41
42
- repo: https://github.com/PyCQA/isort
  rev: 5.9.3
  hooks:
  - id: isort

43
44
# Black, the code formatter, natively supports pre-commit
- repo: https://github.com/psf/black
45
  rev: 21.8b0
46
47
  hooks:
  - id: black
48
49
    # By default, this ignores pyi files, though black supports them
    types: [text]
50
    files: \.pyi?$
51
52

# Changes tabs to spaces
53
- repo: https://github.com/Lucas-C/pre-commit-hooks
54
  rev: v1.1.10
55
56
57
  hooks:
  - id: remove-tabs

58
# Flake8 also supports pre-commit natively (same author)
59
- repo: https://github.com/PyCQA/flake8
60
  rev: 3.9.2
61
62
  hooks:
  - id: flake8
63
    additional_dependencies: [flake8-bugbear, pep8-naming]
64
    exclude: ^(docs/.*|tools/.*)$
65

66
# CMake formatting
67
- repo: https://github.com/cheshirekow/cmake-format-precommit
Henry Schreiner's avatar
Henry Schreiner committed
68
  rev: v0.6.13
69
70
71
  hooks:
  - id: cmake-format
    additional_dependencies: [pyyaml]
Henry Schreiner's avatar
Henry Schreiner committed
72
73
    types: [file]
    files: (\.cmake|CMakeLists.txt)(.in)?$
74

75
76
# Check static types with mypy
- repo: https://github.com/pre-commit/mirrors-mypy
77
  rev: v0.910
78
79
80
81
82
83
84
  hooks:
  - id: mypy
    # The default Python type ignores .pyi files, so let's rerun if detected
    types: [text]
    files: ^pybind11.*\.pyi?$
    # Running per-file misbehaves a bit, so just run on all files, it's fast
    pass_filenames: false
85
    additional_dependencies: [typed_ast]
86

87
88
# Checks the manifest for missing files (native support)
- repo: https://github.com/mgedmin/check-manifest
89
  rev: "0.46"
90
91
92
93
94
95
  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]

96
97
98
99
- repo: https://github.com/codespell-project/codespell
  rev: v2.1.0
  hooks:
  - id: codespell
100
101
    exclude: ".supp$"
    args: ["-L", "nd,ot,thist"]
102

103
104
105
106
107
-   repo: https://github.com/shellcheck-py/shellcheck-py
    rev: v0.7.2.1
    hooks:
    -   id: shellcheck

108
# The original pybind11 checks for a few C++ style items
109
110
111
112
113
- repo: local
  hooks:
  - id: disallow-caps
    name: Disallow improper capitalization
    language: pygrep
114
    entry: PyBind|Numpy|Cmake|CCache|PyTest
115
116
    exclude: .pre-commit-config.yaml

117
118
119
120
121
122
123
124
- repo: local
  hooks:
  - id: check-style
    name: Classic check-style
    language: system
    types:
    - c++
    entry: ./tools/check-style.sh