-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
171 lines (169 loc) · 4.88 KB
/
.pre-commit-config.yaml
File metadata and controls
171 lines (169 loc) · 4.88 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
exclude: |-
(?x)^(
tilecloud_chain/configuration\.py
|tilecloud_chain/host_limit\.py
)$
default_language_version:
python: '3.11'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.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
- repo: https://github.com/sbrunner/integrity-updater
rev: 1.0.2
hooks:
- id: integrity-updater
- repo: https://github.com/mheap/json-schema-spell-checker
rev: main
hooks:
- id: json-schema-spell-checker
files: tilecloud_chain/schema.json
args:
- --fields=description
- --ignore-numbers
- --ignore-acronyms
- --en-us
- --spelling=.github/spell-ignore-words.txt
- repo: https://github.com/mheap/json-schema-spell-checker
rev: main
hooks:
- id: json-schema-spell-checker
files: tilecloud_chain/host-limit-schema.json
args:
- --fields=description
- --ignore-numbers
- --ignore-acronyms
- --en-us
- --spelling=.github/spell-ignore-words.txt
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
hooks:
- id: prettier
additional_dependencies:
- prettier@2.8.4
- repo: https://github.com/camptocamp/jsonschema-gentypes
rev: 2.13.0
hooks:
- id: jsonschema-gentypes
files: |-
(?x)^(
jsonschema-gentypes\.yaml
|^tilecloud_chain/schema\.json
|^tilecloud_chain/.*-schema\.json
)$
- repo: https://github.com/sbrunner/jsonschema2md2
rev: 1.7.0
hooks:
- id: jsonschema2md
files: tilecloud_chain/schema\.json
args:
- --pre-commit
- tilecloud_chain/schema.json
- tilecloud_chain/CONFIG.md
- id: jsonschema2md
files: tilecloud_chain/host-limit-schema\.json
args:
- --pre-commit
- tilecloud_chain/host-limit-schema.json
- tilecloud_chain/HOST_LIMIT.md
- repo: https://github.com/sbrunner/hooks
rev: 1.6.1
hooks:
- id: copyright
- id: poetry2-lock
additional_dependencies:
- poetry==2.3.4 # pypi
- id: canonicalize
- id: prospector-to-ruff
additional_dependencies:
- prospector-profile-duplicated==1.12.0 # pypi
- prospector-profile-utils==1.27.0 # pypi
args:
- --test=utils:tests
- repo: https://github.com/codespell-project/codespell
rev: v2.4.2
hooks:
- id: codespell
exclude: ^(.*/)?poetry\.lock$
args:
- --ignore-words=.github/spell-ignore-words.txt
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.11.0.1
hooks:
- id: shellcheck
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.37.0
hooks:
- id: check-github-actions
- 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
- repo: https://github.com/sirwart/ripsecrets
rev: v0.1.9
hooks:
- id: ripsecrets
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.7
hooks:
- id: ruff-format
- repo: https://github.com/prospector-dev/prospector
rev: v1.18.0
hooks:
- id: prospector
args:
- --profile=utils:pre-commit
- --profile=.prospector.yaml
- --die-on-tool-error
- --output-format=pylint
exclude: |-
(?x)^(
tilecloud_chain/tests/.*
)$
additional_dependencies:
- prospector-profile-duplicated==1.12.0 # pypi
- prospector-profile-utils==1.27.0 # pypi
- pylint[spelling]==4.0.5 # pypi
- ruff==0.15.7 # pypi
- id: prospector
args:
- --die-on-tool-error
- --output-format=pylint
- --profile=utils:tests
- --profile=utils:pre-commit
additional_dependencies:
- prospector-profile-utils==1.27.0 # pypi
- ruff==0.15.7 # pypi
- repo: https://github.com/sbrunner/jsonschema-validator
rev: 1.0.0
hooks:
- id: jsonschema-validator
files: |-
(?x)^(
ci/config\.yaml
|\.github/publish\.yaml
|jsonschema\-gentypes\.yaml
)$
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 43.91.1
hooks:
- id: renovate-config-validator
- repo: https://github.com/sbrunner/python-versions-hook
rev: 1.3.0
hooks:
- id: python-versions