-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
254 lines (226 loc) · 5.87 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
254 lines (226 loc) · 5.87 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
# 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, commit-msg]
repos:
- repo: meta
hooks:
- id: check-useless-excludes
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-symlinks
- id: check-json
- id: check-toml
- id: check-vcs-permalinks
- id: check-yaml
- id: end-of-file-fixer
- id: file-contents-sorter
files: spelling_private_dict\.txt$
- id: trailing-whitespace
exclude: ^src/mock_vws/resources/
- repo: local
hooks:
- id: custom-linters
name: custom-linters
entry: python -m pytest ci/test_custom_linters.py
stages: [push]
language: system
types_or: [yaml, python]
pass_filenames: false
- id: actionlint
name: actionlint
entry: actionlint
language: system
pass_filenames: false
types_or: [yaml]
- id: shellcheck
name: shellcheck
entry: shellcheck --shell bash
language: system
types_or: [shell]
- id: shellcheck-docs
name: shellcheck-docs
entry: doccmd --language=shell --language=console --command="shellcheck --shell=bash"
language: system
types_or: [markdown, rst]
- id: mypy
name: mypy
stages: [push]
entry: python -m mypy .
language: system
types_or: [python, toml]
pass_filenames: false
- id: mypy-docs
name: mypy-docs
stages: [push]
entry: doccmd --language=python --command="mypy"
language: system
types_or: [markdown, rst, python, toml]
- id: check-manifest
name: check-manifest
stages: [push]
entry: python -m check_manifest .
language: system
pass_filenames: false
- id: pyright
name: pyright
stages: [push]
entry: python -m pyright .
language: system
types_or: [python, toml]
pass_filenames: false
- id: pyright-docs
name: pyright-docs
stages: [push]
entry: doccmd --language=python --command="pyright"
language: system
types_or: [markdown, rst, python, toml]
- id: pyright-verifytypes
name: pyright-verifytypes
stages: [push]
entry: python -m pyright --verifytypes mock_vws
language: system
pass_filenames: false
types_or: [python]
- id: vulture
name: vulture
entry: python -m vulture .
language: system
types_or: [python]
pass_filenames: false
- id: vulture-docs
name: vulture docs
entry: doccmd --language=python --command="vulture"
language: system
types_or: [python]
pass_filenames: false
- id: pyroma
name: pyroma
entry: python -m pyroma --min 10 .
language: system
pass_filenames: false
types_or: [toml]
- id: deptry
name: deptry
entry: python -m deptry src/
language: system
pass_filenames: false
- id: pylint
name: pylint
entry: python -m pylint *.py src/ tests/ docs/ ci/ admin/
language: system
stages: [manual]
pass_filenames: false
- id: pylint-docs
name: pylint-docs
entry: doccmd --language=python --command="pylint"
language: system
stages: [manual]
types_or: [markdown, rst, python, toml]
- id: hadolint-docker
name: Lint Dockerfiles
description: Runs hadolint Docker image to lint Dockerfiles
language: docker_image
types_or: [dockerfile]
stages: [manual] # Requires Docker to be running
# We choose not to use a Python wrapper or alternative to hadolint as none
# appear to be well maintained, and they require more setup than we would
# want.
entry: ghcr.io/hadolint/hadolint hadolint
- id: ruff-check-fix
name: Ruff check fix
entry: python -m ruff check --fix
language: system
types_or: [python]
- id: ruff-check-fix-docs
name: Ruff check fix docs
entry: doccmd --language=python --command="ruff check --fix"
language: system
types_or: [markdown, rst]
- id: ruff-format-fix
name: Ruff format
entry: python -m ruff format
language: system
types_or: [python]
- id: ruff-format-fix-docs
name: Ruff format docs
entry: doccmd --language=python --no-pad-file --command="ruff format"
language: system
types_or: [markdown, rst]
- id: doc8
name: doc8
entry: python -m doc8
language: system
types_or: [rst]
- id: interrogate
name: interrogate
entry: python -m interrogate
language: system
types_or: [python]
exclude_types: [executable]
- id: interrogate-docs
name: interrogate docs
entry: doccmd --language=python --command="interrogate"
language: system
types_or: [markdown, rst]
- id: pyproject-fmt-fix
name: pyproject-fmt
entry: pyproject-fmt
language: system
types_or: [toml]
files: pyproject.toml
- id: linkcheck
name: linkcheck
entry: make -C docs/ linkcheck SPHINXOPTS=-W
language: system
types_or: [rst]
stages: [manual]
pass_filenames: false
- id: spelling
name: spelling
entry: make -C docs/ spelling SPHINXOPTS=-W
language: system
types_or: [rst]
stages: [manual]
pass_filenames: false
- id: docs
name: Build Documentation
entry: make docs
language: system
stages: [manual]
pass_filenames: false
# We use system Python, with required dependencies specified in pyproject.toml.
# We therefore cannot use those dependencies in pre-commit CI.
ci:
skip:
- actionlint
- check-manifest
- custom-linters
- deptry
- doc8
- docs
- interrogate
- interrogate-docs
- linkcheck
- mypy
- mypy-docs
- pylint
- pyproject-fmt-fix
- pyright
- pyright-docs
- pyright-verifytypes
- pyroma
- ruff-check-fix
- ruff-check-fix-docs
- ruff-format-fix
- ruff-format-fix-docs
- shellcheck
- shellcheck-docs
- spelling
- vulture
- vulture-docs