.pre-commit-config.yaml 2.4 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: v3.2.0
19
20
21
22
23
24
25
26
27
28
29
30
31
  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

32
33
34
35
36
# Black, the code formatter, natively supports pre-commit
- repo: https://github.com/psf/black
  rev: 20.8b1
  hooks:
  - id: black
37
38
    # By default, this ignores pyi files, though black supports them
    types: [text]
39
    files: \.pyi?$
40
41

# Changes tabs to spaces
42
- repo: https://github.com/Lucas-C/pre-commit-hooks
43
  rev: v1.1.9
44
45
46
  hooks:
  - id: remove-tabs

47
# Flake8 also supports pre-commit natively (same author)
48
- repo: https://gitlab.com/pycqa/flake8
49
  rev: 3.8.3
50
51
  hooks:
  - id: flake8
52
    additional_dependencies: [flake8-bugbear, pep8-naming]
53
    exclude: ^(docs/.*|tools/.*)$
54

55
# CMake formatting
56
- repo: https://github.com/cheshirekow/cmake-format-precommit
Henry Schreiner's avatar
Henry Schreiner committed
57
  rev: v0.6.13
58
59
60
  hooks:
  - id: cmake-format
    additional_dependencies: [pyyaml]
Henry Schreiner's avatar
Henry Schreiner committed
61
62
    types: [file]
    files: (\.cmake|CMakeLists.txt)(.in)?$
63

64
65
66
67
68
69
70
71
72
73
74
# Check static types with mypy
- repo: https://github.com/pre-commit/mirrors-mypy
  rev: v0.790
  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

75
76
# Checks the manifest for missing files (native support)
- repo: https://github.com/mgedmin/check-manifest
Henry Schreiner's avatar
Henry Schreiner committed
77
  rev: "0.43"
78
79
80
81
82
83
84
  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]

# The original pybind11 checks for a few C++ style items
85
86
87
88
89
- repo: local
  hooks:
  - id: disallow-caps
    name: Disallow improper capitalization
    language: pygrep
90
    entry: PyBind|Numpy|Cmake|CCache
91
92
    exclude: .pre-commit-config.yaml

93
94
95
96
97
98
99
100
- repo: local
  hooks:
  - id: check-style
    name: Classic check-style
    language: system
    types:
    - c++
    entry: ./tools/check-style.sh