-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.pre-commit-config.yaml
249 lines (249 loc) · 6.54 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
ci:
skip:
- lint
- deptry
- vulture
- copyright-year
- make-docs
- update-readme
- update-docs
- update-whitelist
- coverage
- check-unstaged-news
- check-news
- test-check-news
- commit-fix
default_language_version:
python: "3.9"
default_stages:
- pre-commit
exclude: |
(?x)^(
| poetry\.lock
| migrations\/.*
| \.bumpversion\.cfg
| whitelist\.py
| \.idea\/.*
| tests\/TESTS\.md
| docs\/conf\.py
| changelog\/.*
)$
repos:
- repo: local
hooks:
# local so package can be imported to lint
- id: lint
name: lint
entry: make .make/lint
language: system
pass_filenames: false
# analyze all files for reliable result
- id: vulture
name: check for unused code
language: system
entry: make .make/unused
pass_filenames: false
# script also handles coverage
- id: coverage
name: test source code coverage
language: system
entry: make coverage.xml
pass_filenames: false
# check imports against dependencies
- id: deptry
name: deptry
description: |
deptry is a command line tool to check for issues with dependencies
in a Python project, such as obsolete or missing dependencies.
entry: make .make/check-deps
language: system
always_run: true
pass_filenames: false
# check copyright year in license
- id: copyright-year
name: copyright year
language: system
entry: make update-copyright
pass_filenames: false
- id: make-docs
name: make docs
language: system
entry: make docs/_build/html/index.html
pass_filenames: false
- id: update-readme
name: update readme
language: system
entry: make README.rst
pass_filenames: false
- id: update-docs
name: update docs
language: system
entry: make .make/update-docs
pass_filenames: false
- id: update-whitelist
name: update whitelist
language: system
entry: make whitelist.py
pass_filenames: false
- id: check-unstaged-news
name: Check Unstaged News
entry: |
bash -c
'git status --porcelain changelog | grep "??" && exit 1 || exit 0'
language: system
stages:
- pre-commit
- id: commit-fix
name: Test Fix
entry: poetry run python scripts/commit_fix.py
language: system
stages:
- commit-msg
- id: check-news
name: Check News
entry: poetry run python scripts/check_news.py
language: system
stages:
- commit-msg
- id: test-check-news
name: Test Check News
entry: make .make/test-check-news
language: system
pass_filenames: false
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v5.0.0"
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-builtin-literals
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: check-merge-conflict
exclude: ^(.*\.rst)$
- id: check-symlinks
- id: check-toml
- id: check-vcs-permalinks
- id: check-xml
- id: debug-statements
- id: destroyed-symlinks
- id: detect-private-key
exclude: ^(.*test\.key)$
- id: forbid-submodules
- id: no-commit-to-branch
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace
- id: mixed-line-ending
- id: requirements-txt-fixer
- id: pretty-format-json
args:
- "--autofix"
- id: fix-encoding-pragma
args:
- "--remove"
- repo: https://github.com/ikamensh/flynt
rev: "1.0.1"
hooks:
- id: flynt
args:
- "--line-length=79"
- "--transform-concats"
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v4.0.0-alpha.8"
hooks:
- id: prettier
args:
- "--write"
exclude: |
(?x)^(
| CHANGELOG\.md
| .*\.json
| SECURITY\.md
| docs\/deprecated\/messages\.md
)$
- repo: https://github.com/pappasam/toml-sort
rev: "v0.24.2"
hooks:
- id: toml-sort
args:
- "--in-place"
- "--all"
- repo: https://github.com/pre-commit/pygrep-hooks
rev: "v1.10.0"
hooks:
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/pre-commit/pre-commit
rev: "v4.0.1"
hooks:
- id: validate_manifest
- repo: https://github.com/siderolabs/conform
rev: "v0.1.0-alpha.30"
hooks:
- id: conform
- repo: https://github.com/PyCQA/bandit
rev: "1.8.0"
hooks:
- id: bandit
args:
- "--recursive"
- "-lll"
- repo: https://github.com/asottile/pyupgrade
rev: "v3.19.1"
hooks:
- id: pyupgrade
args:
- "--py38-plus"
- repo: https://github.com/PyCQA/flake8
rev: "7.1.1"
hooks:
- id: flake8
exclude: ^(.*\/)?(_?templates\.py|exclude_test\.py)
additional_dependencies:
- flake8-bugbear==22.12.6
- flake8-simplify==0.21.0
- repo: https://github.com/adrienverge/yamllint.git
rev: "v1.35.1"
hooks:
- id: yamllint
args:
- "--config-data={rules: {line-length: {max: 79}}}"
- repo: https://github.com/psf/black
rev: "24.10.0"
hooks:
- id: black
additional_dependencies:
- tomli==2.0.1
- repo: https://github.com/pycqa/isort
rev: "5.13.2"
hooks:
- id: isort
- repo: https://github.com/codespell-project/codespell
rev: "v2.3.0"
hooks:
- id: codespell
additional_dependencies:
- tomli
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: "1.4.1"
hooks:
- id: tox-ini-fmt
- repo: https://github.com/dannysepler/rm_unneeded_f_str
rev: "v0.2.0"
hooks:
- id: rm-unneeded-f-str
- repo: https://github.com/rhysd/actionlint
rev: "v1.7.5"
hooks:
- id: actionlint
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: "3.0.3"
hooks:
- id: editorconfig-checker
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.14.0"
hooks:
- id: mypy
additional_dependencies: [types-pyyaml==6.0.12]