-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
158 lines (156 loc) · 4.72 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
158 lines (156 loc) · 4.72 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# SPDX-FileCopyrightText: Copyright (c) 2022-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.3
hooks:
- id: ruff-check
args: [--fix]
- id: ruff-format
- repo: https://github.com/MarcoGorelli/cython-lint
rev: v0.15.0
hooks:
- id: cython-lint
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v20.1.8
hooks:
- id: clang-format
files: \.(h|cpp)$
types_or: [file]
args: ['-fallback-style=none', '-style=file', '-i']
- repo: https://github.com/cpplint/cpplint
rev: 2.0.0
hooks:
- id: cpplint
name: cpplint
# description: Check C++ code style using cpplint.py.
# entry: bash ./tools/codestyle/cpplint_pre_commit.hook
# language: system
files: \.(h|cpp)$
# exclude: path/to/myfile.h
- repo: https://github.com/rapidsai/pre-commit-hooks
rev: v1.6.0
hooks:
- id: verify-copyright
args: [--fix, --spdx, --spdx-license-identifier=BSD-3-Clause]
files: |
(?x)
[.](cmake|cpp|cu|cuh|h|hpp|sh|pxd|py|pyx|rs|java)$|
CMakeLists[.]txt$|
CMakeLists_standalone[.]txt$|
meta[.]yaml$|
pyproject[.]toml$|
setup[.]cfg$|
dependencies[.]yaml$|
^[.]pre-commit-config[.]yaml$|
recipe[.]yaml$
- id: verify-alpha-spec
args:
- --fix
- --rapids-version-file=RAPIDS_VERSION
- id: verify-hardcoded-version
exclude: |
(?x)
devcontainer[.]json$|
dependencies[.]yaml$|
^[.]github/workflows/|
[.]md$|
pom[.]xml$|
^[.]pre-commit-config[.]yaml$|
[.]rst$|
^conda/environments/|
[.](png)$
- id: verify-hardcoded-version
name: verify-hardcoded-version-rapids
args: [--fix, --version-file=RAPIDS_VERSION]
exclude: |
(?x)
devcontainer[.]json$|
dependencies[.]yaml$|
^[.]github/workflows/|
[.]md$|
pom[.]xml$|
^[.]pre-commit-config[.]yaml$|
[.]rst$|
^conda/environments/|
[.](png)$|
^RAPIDS_BRANCH$
- id: verify-pyproject-license
# ignore the top-level pyproject.toml, which doesn't
# have or need a [project] table
exclude: |
(?x)
^pyproject[.]toml$
- repo: https://github.com/rapidsai/dependency-file-generator
rev: v1.20.0
hooks:
- id: rapids-dependency-file-generator
args: ["--clean", "--warn-all", "--strict"]
- repo: local
hooks:
- id: cmake-format
name: cmake-format
entry: ./cmake/scripts/run-cmake-format.sh cmake-format
language: python
types: [cmake]
# Note that pre-commit autoupdate does not update the versions
# of dependencies, so we'll have to update this manually.
additional_dependencies:
- cmakelang==0.6.13
verbose: true
require_serial: true
- id: cmake-lint
name: cmake-lint
entry: ./cmake/scripts/run-cmake-format.sh cmake-lint
language: python
types: [cmake]
# Note that pre-commit autoupdate does not update the versions
# of dependencies, so we'll have to update this manually.
additional_dependencies:
- cmakelang==0.6.13
verbose: true
require_serial: true
- id: doxygen-check
name: doxygen-check
entry: ./ci/checks/doxygen.sh
files: ^cpp/include/
types_or: [file]
language: system
pass_filenames: false
verbose: true
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
additional_dependencies: [tomli]
args: ["--toml", "pyproject.toml"]
exclude: |
(?x)^(
.*test.*|
^CHANGELOG.md$
)
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
- repo: https://github.com/adrienverge/yamllint
rev: v1.38.0
hooks:
- id: yamllint
additional_dependencies: [pyyaml]
exclude: |
(?x)^(
conda/environments/.*|
[.]clang-format$
)
- repo: https://github.com/zizmorcore/zizmor-pre-commit
rev: v1.24.1
hooks:
- id: zizmor
default_language_version:
python: python3