-
-
Notifications
You must be signed in to change notification settings - Fork 283
/
.pre-commit-config.yaml
294 lines (256 loc) · 7.47 KB
/
.pre-commit-config.yaml
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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
# Baseline hooks and config updated 2024-09-25
# Web hooks and config updated 2024-09-25
# Docs hooks and config updated 2024-09-25
# Python hooks and config updated 2024-09-25
minimum_pre_commit_version: '2.10.0'
default_language_version:
python: python3
default_stages: [commit]
exclude: '\.(min\.(js|css)|pot?)$'
repos:
# Meta checks
- repo: meta
hooks:
- id: check-useless-excludes
# General fixers
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
name: Trim trailing whitespace
exclude_types: [svg]
- id: mixed-line-ending
name: Normalize mixed line endings
args: [--fix=lf]
exclude_types: [batch]
- id: end-of-file-fixer
name: Fix end of files
exclude_types: [svg]
- id: fix-byte-order-marker
name: Remove Unicode BOM
# More general fixers
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.1 # Pinned for now to avoid requiring pre-commit >=3.2.0
hooks:
- id: remove-tabs
name: Replace tabs with spaces
types: [text]
exclude_types: [svg, batch]
args: [--whitespaces-count, '2']
# Check and fix spelling
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
# Define separate hooks for checking and correcting spelling errors
# since codespell doesn't print verbose output when writing changes
- id: codespell
name: Check spelling
exclude: '\.gitattributes|\bworkshops\b'
- id: codespell
name: Fix spelling
exclude: '\.gitattributes|\bworkshops\b'
args: [--write-changes]
# Lint and fix CSS with stylelint
- repo: https://github.com/thibaudcolas/pre-commit-stylelint
rev: v16.9.0
hooks:
- id: stylelint
name: Lint and fix CSS (stylelint)
args: [--fix, --color, --maxWarnings, '0']
additional_dependencies:
# Use fork of csstree-validator that supports Stylelint 16 for now
- '@carlosjeurissen/[email protected]'
# Pin to avoid no-unsupported-browser-features error breaking stylelint
# Should be fixed soon; see
# https://github.com/RJWadley/stylelint-no-unsupported-browser-features/issues/299
# Format CSS with Prettier
- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.3.3
hooks:
- id: prettier
name: Format CSS (Prettier)
types: [css]
# Pretty-format INI
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.14.0
hooks:
- id: pretty-format-ini
name: Format INI
types: [ini]
args: [--autofix]
# Lint and fix JavaScript
- repo: https://github.com/eslint/eslint
rev: v9.9.0 # Pin to fix dep conflict on install; see eslint/eslint#18956
hooks:
- id: eslint
name: Lint and fix JavaScript (ESLint)
args: [--fix, --color, --max-warnings, '0']
additional_dependencies:
exclude: 'doc/_static/js/language-switcher.js'
# Format JavaScript with Prettier
- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.3.3
hooks:
- id: prettier
name: Format JavaScript (Prettier)
types: [javascript]
exclude: 'doc/_static/js/language-switcher.js'
# Check JSON
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-json
name: Check JSON
# Add doctoc to Markdown
- repo: https://github.com/thlorenz/doctoc
rev: v2.2.0
hooks:
- id: doctoc
name: Generate Markdown ToCs
args: [--maxlevel, '3', --update-only]
# Lint Markdown
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.14.0
hooks:
- id: markdownlint-cli2
name: Lint Markdown
args: [--fix]
# Format Python
- repo: https://github.com/psf/black-pre-commit-mirror
rev: '24.8.0'
hooks:
- id: black
name: Format Python with Black
args: ['--config', '.black.toml']
exclude: '\bworkshops\b'
# Check Python
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-ast
name: Check Python AST
# Lint Python
- repo: https://github.com/pycqa/flake8
rev: '7.1.1'
hooks:
- id: flake8
name: Lint Python with Flake8
exclude: '\bworkshops\b'
- repo: https://github.com/pycqa/pylint
rev: v3.3.1
hooks:
- id: pylint
name: Lint Python with Pylint
exclude: '\bworkshops\b'
# Check Python dependencies
- repo: https://github.com/Lucas-C/pre-commit-hooks-safety
rev: v1.3.3
hooks:
- id: python-safety-dependencies-check
name: Check Python dependencies (Safety)
args: [--disable-optional-telemetry]
files: '.*requirements.*.txt'
types: [text]
# Check RST
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: rst-backticks
name: Check RST backticks
- id: rst-directive-colons
name: Check RST directive colons
- id: rst-inline-touching-normal
name: Check RST inline touching normal
# Lint RST
- repo: https://github.com/sphinx-contrib/sphinx-lint
rev: v1.0.0
hooks:
- id: sphinx-lint
name: Lint RST
args: [--enable, all, --disable, line-too-long]
# Check TOML and XML
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-toml
name: Check TOML
- id: check-xml
name: Check XML
# Pretty-format YAML
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.14.0
hooks:
- id: pretty-format-yaml
name: Format YAML
exclude: '\bworkshops\b|crowdin.ya?ml'
args: [--autofix, --indent, '2', --preserve-quotes]
# Check YAML
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-yaml
name: Check YAML
# Lint YAML
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
- id: yamllint
name: Lint YAML
types: [yaml]
args: [--strict, --format, colored]
# Replace CRLF with LF post-prettify
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.1 # Pinned for now to avoid requiring pre-commit >=3.2.0
hooks:
- id: remove-crlf
name: Replace CRLFs with LF
types: [text]
exclude_types: [batch, svg]
# General checkers
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: text-unicode-replacement-char
name: Check for Unicode replacement chars
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-added-large-files
name: Check for added large files
args: [--maxkb=1025]
- id: check-case-conflict
name: Check for case conflicts
- id: check-executables-have-shebangs
name: Check that executables have shebangs
exclude: 'pre\-commit\-config\.yaml'
- id: check-shebang-scripts-are-executable
name: Check that shebangs are executable
exclude: 'pre\-commit\-config\.yaml'
- id: check-merge-conflict
name: Check for merge conflicts
# Commit message hooks #
# Check that commit message follows basic rules
- repo: https://github.com/jorisroovers/gitlint
rev: v0.19.1
hooks:
- id: gitlint
name: Check commit message
# Check commit message spelling
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
name: Check commit message spelling
stages: [commit-msg]