-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
425 lines (383 loc) · 12.1 KB
/
.pre-commit-config.yaml
File metadata and controls
425 lines (383 loc) · 12.1 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
---
fail_fast: true
# We use system Python, with required dependencies specified in pyproject.toml.
# We therefore cannot use those dependencies in pre-commit CI.
ci:
skip:
- actionlint
- sphinx-lint
- check-manifest
- custom-linters
- deptry
- doc8
- docs
- interrogate
- interrogate-docs
- linkcheck
- mypy
- mypy-docs
- pylint
- pyproject-fmt-fix
- pyright
- pyright-docs
- pyright-verifytypes
- ty
- ty-docs
- pyroma
- ruff-check-fix
- ruff-check-fix-docs
- ruff-format-fix
- ruff-format-fix-docs
- pydocstringformatter
- shellcheck
- shellcheck-docs
- shfmt
- shfmt-docs
- spelling
- vulture
- vulture-docs
- yamlfix
- zizmor
- pyrefly
- pyrefly-docs
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
default_install_hook_types: [pre-commit, pre-push]
repos:
- repo: meta
hooks:
- id: check-useless-excludes
stages: [pre-commit]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-added-large-files
stages: [pre-commit]
- id: check-case-conflict
stages: [pre-commit]
- id: check-executables-have-shebangs
stages: [pre-commit]
- id: check-merge-conflict
stages: [pre-commit]
- id: check-shebang-scripts-are-executable
stages: [pre-commit]
- id: check-symlinks
stages: [pre-commit]
- id: check-json
stages: [pre-commit]
- id: check-toml
stages: [pre-commit]
- id: check-vcs-permalinks
stages: [pre-commit]
- id: check-yaml
stages: [pre-commit]
- id: end-of-file-fixer
stages: [pre-commit]
- id: file-contents-sorter
files: spelling_private_dict\.txt$
stages: [pre-commit]
- id: trailing-whitespace
stages: [pre-commit]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: rst-directive-colons
stages: [pre-commit]
- id: rst-inline-touching-normal
stages: [pre-commit]
- id: text-unicode-replacement-char
stages: [pre-commit]
- id: rst-backticks
stages: [pre-commit]
- repo: https://github.com/AleksaC/hadolint-py
rev: v2.14.0
hooks:
- id: hadolint
stages: [pre-commit]
- repo: local
hooks:
- id: custom-linters
name: custom-linters
entry: uv run --extra=dev -m pytest ci/test_custom_linters.py
stages: [pre-push]
language: python
types_or: [yaml, python]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: actionlint
name: actionlint
entry: uv run --extra=dev actionlint
language: python
pass_filenames: false
types_or: [yaml]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: pydocstringformatter
name: pydocstringformatter
entry: uv run --extra=dev pydocstringformatter
language: python
types_or: [python]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: shellcheck
name: shellcheck
entry: uv run --extra=dev shellcheck --shell=bash
language: python
types_or: [shell]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: shellcheck-docs
name: shellcheck-docs
# We exclude SC2215 as it is a false positive for an unknown reason on Windows.
entry: uv run --extra=dev doccmd --no-write-to-file --language=shell --language=console
--command="shellcheck --shell=bash --exclude=SC2215"
language: python
types_or: [markdown, rst]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: shfmt
name: shfmt
entry: shfmt --write --space-redirects --indent=4
language: python
types_or: [shell]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: shfmt-docs
name: shfmt-docs
entry: uv run --extra=dev doccmd --language=shell --language=console --skip-marker=shfmt
--no-pad-file --command="shfmt --write --space-redirects --indent=4"
language: python
types_or: [markdown, rst]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: mypy
name: mypy
stages: [pre-push]
entry: uv run --extra=dev -m mypy
language: python
types_or: [python, toml]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
# We do not use --example-workers 0 due to https://github.com/python/mypy/issues/18283
- id: mypy-docs
name: mypy-docs
stages: [pre-push]
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="mypy"
language: python
types_or: [markdown, rst]
- id: check-manifest
name: check-manifest
stages: [pre-push]
entry: uv run --extra=dev -m check_manifest
language: python
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: pyright
name: pyright
stages: [pre-push]
entry: uv run --extra=dev -m pyright .
language: python
types_or: [python, toml]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: pyright-docs
name: pyright-docs
stages: [pre-push]
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="pyright"
language: python
types_or: [markdown, rst]
- id: pyright-verifytypes
name: pyright-verifytypes
stages: [pre-push]
entry: uv run --extra=dev -m pyright --verifytypes mock_vws
language: python
pass_filenames: false
types_or: [python]
additional_dependencies: [uv==0.9.5]
- id: ty
name: ty
stages: [pre-push]
entry: uv run --extra=dev ty check
language: python
types_or: [python, toml]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: ty-docs
name: ty-docs
stages: [pre-push]
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="ty
check"
language: python
types_or: [markdown, rst]
additional_dependencies: [uv==0.9.5]
- id: vulture
name: vulture
entry: uv run --extra=dev -m vulture .
language: python
types_or: [python]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: vulture-docs
name: vulture docs
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="vulture"
language: python
types_or: [python]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: pyroma
name: pyroma
entry: uv run --extra=dev -m pyroma --min 10 .
language: python
pass_filenames: false
types_or: [toml]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: deptry
name: deptry
entry: uv run --extra=dev -m deptry src/
language: python
pass_filenames: false
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: pylint
name: pylint
entry: uv run --extra=dev -m pylint *.py src/ tests/ docs/ ci/ admin/
language: python
stages: [manual]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: pylint-docs
name: pylint-docs
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="pylint"
language: python
stages: [manual]
types_or: [markdown, rst]
- id: ruff-check-fix
name: Ruff check fix
entry: uv run --extra=dev -m ruff check --fix
language: python
types_or: [python]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: ruff-check-fix-docs
name: Ruff check fix docs
entry: uv run --extra=dev doccmd --language=python --command="ruff check --fix"
language: python
types_or: [markdown, rst]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: ruff-format-fix
name: Ruff format
entry: uv run --extra=dev -m ruff format
language: python
types_or: [python]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: ruff-format-fix-docs
name: Ruff format docs
entry: uv run --extra=dev doccmd --language=python --no-pad-file --command="ruff
format"
language: python
types_or: [markdown, rst]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: doc8
name: doc8
entry: uv run --extra=dev -m doc8
language: python
types_or: [rst]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: interrogate
name: interrogate
entry: uv run --extra=dev -m interrogate
language: python
types_or: [python]
exclude_types: [executable]
stages: [pre-commit]
- id: interrogate-docs
name: interrogate docs
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="interrogate"
language: python
types_or: [markdown, rst]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: pyproject-fmt-fix
name: pyproject-fmt
entry: uv run --extra=dev pyproject-fmt
language: python
types_or: [toml]
files: pyproject.toml
stages: [pre-commit]
- id: linkcheck
name: linkcheck
entry: uv run --extra=dev sphinx-build -M linkcheck docs/source docs/build
-W
language: python
types_or: [rst]
stages: [manual]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: spelling
name: spelling
entry: uv run --extra=dev sphinx-build -M spelling docs/source docs/build
-W
language: python
types_or: [rst]
stages: [manual]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: docs
name: Build Documentation
entry: uv run --extra=dev sphinx-build -M html docs/source docs/build -W
language: python
stages: [manual]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: yamlfix
name: pyproject-fmt
entry: uv run --extra=dev yamlfix
language: python
types_or: [yaml]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: zizmor
name: zizmor
entry: uv run --extra=dev zizmor --strict-collection .github
language: python
pass_filenames: false
types_or: [yaml]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: sphinx-lint
name: sphinx-lint
entry: uv run --extra=dev sphinx-lint --enable=all --disable=line-too-long
language: python
types_or: [rst]
additional_dependencies: [uv==0.9.5]
stages: [pre-commit]
- id: pyrefly
name: pyrefly
stages: [pre-push]
entry: uv run --extra=dev pyrefly check
language: python
types_or: [python, toml]
pass_filenames: false
additional_dependencies: [uv==0.9.5]
- id: pyrefly-docs
name: pyrefly-docs
stages: [pre-push]
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="pyrefly
check"
language: python
types_or: [markdown, rst]
additional_dependencies: [uv==0.9.5]
- id: hclfmt
name: hclfmt
entry: hclfmt -w
language: golang
types: [hcl]
additional_dependencies: [github.com/hashicorp/hcl/v2/cmd/hclfmt@v2.24.0]
stages: [pre-commit]