-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
200 lines (199 loc) · 6.4 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
# https://pre-commit.com/hooks.html
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
hooks:
- id: prettier
additional_dependencies:
- [email protected] # npm
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: detect-private-key
- id: check-merge-conflict
- id: check-ast
- id: debug-statements
- id: check-toml
- id: check-yaml
- id: check-json
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending
- id: name-tests-test
args:
- --pytest-test-first
- repo: https://github.com/sbrunner/hooks
rev: 1.1.2
hooks:
- id: poetry-check
additional_dependencies:
- poetry==1.8.4 # pypi
- id: poetry-lock
additional_dependencies:
- poetry==1.8.4 # pypi
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
exclude: |-
(?x)^(
(.*/)?poetry\.lock
|package-lock\.json
)$
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: git-check
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.4
hooks:
- id: check-github-workflows
- id: check-jsonschema
name: Check GitHub Workflows set timeout-minutes
files: ^\.github/workflows/[^/]+$
types:
- yaml
args:
- --builtin-schema
- github-workflows-require-timeout
- id: check-renovate
additional_dependencies:
- pyjson5==1.6.7 # pypi
- repo: https://github.com/sirwart/ripsecrets
rev: v0.1.8
hooks:
- id: ripsecrets
- repo: https://github.com/PyCQA/prospector
rev: v1.13.3
hooks:
- id: prospector
args:
- --tool=ruff
- --die-on-tool-error
- --output-format=pylint
additional_dependencies:
- prospector-profile-duplicated==1.8.0 # pypi
- prospector-profile-utils==1.11.1 # pypi
- ruff==0.7.4 # pypi
- repo: https://github.com/camptocamp/jsonschema-gentypes
rev: 2.8.1
hooks:
- id: jsonschema-gentypes
files: |-
(?x)^(
github_app_geo_project/project-schema\.json
|github_app_geo_project/application-schema\.json
|github_app_geo_project/module/.*/schema\.json
|github_app_geo_project/module/.*/.*-schema\.json
)$
- repo: https://github.com/sbrunner/jsonschema2md
rev: 1.3.0
hooks:
- id: jsonschema2md
files: ^github_app_geo_project/project-schema\.json$
args:
- --pre-commit
- github_app_geo_project/project-schema.json
- PROJECT-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/application-schema\.json$
args:
- --pre-commit
- github_app_geo_project/application-schema.json
- APPLICATION-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/standard/changelog-schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/standard/changelog-schema.json
- CHANGELOG-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/standard/auto-schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/standard/auto-schema.json
- AUTO-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/audit/schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/audit/schema.json
- AUDIT-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/pull_request/checks-schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/pull_request/checks-schema.json
- PULL-REQUEST-CHECKS-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/pull_request/links-schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/pull_request/links-schema.json
- PULL-REQUEST-LINKS-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/delete_old_workflow_runs/schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/delete_old_workflow_runs/schema.json
- DELETE-OLD-WORKFLOW-RUN-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/versions/schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/versions/schema.json
- VERSIONS-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/clean/schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/clean/schema.json
- CLEAN-CONFIG.md
- id: jsonschema2md
files: ^github_app_geo_project/module/backport/schema\.json$
args:
- --pre-commit
- github_app_geo_project/module/backport/schema.json
- BACKPORT-CONFIG.md
- repo: https://github.com/sbrunner/jsonschema-validator
rev: 0.1.0
hooks:
- id: jsonschema-validator
files: |-
(?x)^(
ci/config\.yaml
|github_app_geo_project/project-schema\.json
|github_app_geo_project/application-schema\.json
|github_app_geo_project/module/.*/schema\.json
|github_app_geo_project/module/.*/.*-schema\.json
)$
- repo: https://github.com/mheap/json-schema-spell-checker
rev: main
hooks:
- id: json-schema-spell-checker
files: |-
(?x)^(
github_app_geo_project/module/.*/schema\.json
)$
args:
- --fields=description,title
- --spelling=.github/spell-ignore-words.txt
- --ignore-numbers
- --ignore-acronyms
- --en-us
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 39.31.4
hooks:
- id: renovate-config-validator
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.4
hooks:
- id: ruff-format
- repo: https://github.com/sbrunner/python-versions-hook
rev: 0.7.0
hooks:
- id: python-versions