-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
225 lines (225 loc) · 5.96 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
ci:
skip:
- pylint
- deptry
- doctest-package
- doctest-readme
- mypy
- docsig
- vulture
- tests
- toc
- about-tests
- commit-policy
- copyright-year
default_language_version:
python: python3.9
default_stages:
- commit
exclude: |
(?x)^(
| poetry\.lock
| package-lock\.json
| migrations\/.*
| \.bumpversion\.cfg
| whitelist\.py
| \.idea\/.*
| docs\/conf\.py
| tests\/TESTS\.md
| \.github\/COMMIT_POLICY\.md
)$
repos:
- repo: local
hooks:
# local so package can be imported to lint
- id: pylint
name: pylint
entry: poetry run pylint
language: system
types:
- python
exclude: ^(docs/conf\.py)$
# no hooks found for `doctest`
- id: doctest-package
name: doctest docstrings
language: system
entry: poetry run pyaud doctest-package
pass_filenames: false
# no hooks found for `doctest`
- id: doctest-readme
name: doctest readme
language: system
entry: poetry run pyaud doctest-readme
pass_filenames: false
# script installs stubs if necessary
- id: mypy
name: check types
language: system
entry: poetry run pyaud typecheck
pass_filenames: false
# infer imports for overridden methods
- id: docsig
name: check signature documentation
language: system
entry: poetry run pyaud params
pass_filenames: false
# analyze all files for reliable result
- id: vulture
name: check for unused code
language: system
entry: poetry run pyaud unused
pass_filenames: false
# script also handles coverage
- id: tests
name: test source code
language: system
entry: poetry run pyaud test
pass_filenames: false
# script written for specific format
- id: toc
name: update docs toctree
language: system
entry: poetry run pyaud toc --fix
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: poetry run deptry .
language: system
always_run: true
pass_filenames: false
# check tests/TESTS.md is up-to-date
- id: about-tests
name: about tests
language: system
entry: poetry run pyaud about-tests
pass_filenames: false
# check .github/COMMIT_POLICY.md is up-to-date
- id: commit-policy
name: commit policy
language: system
entry: poetry run pyaud commit-policy
pass_filenames: false
# check copyright year in license
- id: copyright-year
name: copyright year
language: system
entry: poetry run pyaud copyright-year
pass_filenames: false
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.6.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"
- repo: https://github.com/PyCQA/docformatter
rev: "v1.7.5"
hooks:
- id: docformatter
args:
- "--recursive"
- "--wrap-summaries=72"
- "--in-place"
- repo: https://github.com/pappasam/toml-sort
rev: "v0.23.1"
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/jshwi/constcheck
rev: "v0.9.0"
hooks:
- id: constcheck
- repo: https://github.com/pre-commit/pre-commit
rev: "v3.8.0"
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.7.9"
hooks:
- id: bandit
args:
- "--recursive"
- "-lll"
- repo: https://github.com/asottile/pyupgrade
rev: "v3.17.0"
hooks:
- id: pyupgrade
args:
- "--py38-plus"
- repo: https://github.com/PyCQA/flake8
rev: "7.1.1"
hooks:
- id: flake8
exclude: ^(.*\/)?_?templates\.py
additional_dependencies:
- flake8-bugbear==22.12.6
- 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.8.0"
hooks:
- id: black
additional_dependencies:
- tomli==2.0.1
- repo: https://github.com/pycqa/isort
rev: "5.13.2"
hooks:
- id: isort