-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pre-commit-config.yaml
145 lines (144 loc) · 3.71 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
ci:
autoupdate_schedule: quarterly
skip:
- copyright
- poetry-check
- poetry-lock
- pipenv-lock
- helm-lock
- ripsecrets
- jsonschema-gentypes
- jsonschema-validator
- jsonschema2md
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.3
hooks:
- id: prettier
additional_dependencies:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.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/camptocamp/jsonschema-gentypes
rev: 2.2.3
hooks:
- id: jsonschema-gentypes
files: |-
(?x)(
^ĵsonschema-gentypes.yaml$
|^c2cciutils/schema.*\.json$
)
- repo: https://github.com/sbrunner/jsonschema-validator
rev: 0.1.0
hooks:
- id: jsonschema-validator
files: |-
(?x)^(
ci/config\.yaml
|example-project/ci/config\.yaml
)$
- repo: https://github.com/sbrunner/jsonschema2md2
rev: 0.9.0
hooks:
- id: jsonschema2md
files: c2cciutils/schema.json
args:
- --pre-commit
- c2cciutils/schema.json
- config.md
- id: jsonschema2md
files: c2cciutils/schema-applications.json
args:
- --pre-commit
- c2cciutils/schema-applications.json
- applications.md
- repo: https://github.com/sbrunner/hooks
rev: 0.5.0
hooks:
- id: copyright
- id: poetry-check
additional_dependencies:
- poetry==1.2.2 # pypi
- id: poetry-lock
additional_dependencies:
- poetry==1.2.2 # pypi
- id: pipenv-lock
additional_dependencies:
- pipenv==2023.7.23 # pypi
- id: helm-lock
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
hooks:
- id: codespell
exclude: |-
(?x)(
(.*/)?poetry\.lock$
|^test/Pipfile\.lock$
)
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.9.0.6
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.23.3
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
# - id: check-renovate
# additional_dependencies:
# - pyjson5==1.6.6 # pypi
- repo: https://github.com/sirwart/ripsecrets
rev: v0.1.8
hooks:
- id: ripsecrets
- repo: https://github.com/asottile/pyupgrade
rev: v3.10.1
hooks:
- id: pyupgrade
args:
- --py39-plus
- repo: https://github.com/PyCQA/autoflake
rev: v2.2.1
hooks:
- id: autoflake
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/PyCQA/prospector
rev: v1.10.3
hooks:
- id: prospector
args:
- --tool=pydocstyle
- --die-on-tool-error
- --output-format=pylint
additional_dependencies:
- prospector-profile-duplicated==0.1.0 # pypi