-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
51 lines (50 loc) · 1.61 KB
/
.pre-commit-config.yaml
File metadata and controls
51 lines (50 loc) · 1.61 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
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: local
hooks:
- id: check-json-in-config
name: Check Renovate presets are listed in pre-commit-config.yaml
entry: .cicd/hooks/check-json-in-config.py
language: python
types: [json]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-json
name: Check JSON files with check-json
- id: check-yaml
name: Check YAML files with check-yaml
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.37.1
hooks:
- id: check-github-workflows
name: Check GitHub Actions workflows with check-jsonschema
args: ["--verbose"]
- repo: https://github.com/zizmorcore/zizmor-pre-commit
rev: v1.24.1
hooks:
- id: zizmor
name: Check GitHub Actions workflows with zizmor
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 43.129.0
hooks:
- id: renovate-config-validator
name: Check Renovate config with renovate-config-validator
files: |
(?x)(
(^|/).?renovate(?:rc)?(?:\.json5?)?$|
automerge-for-formulas.json|
default.json|
copier.json|
group-by-manager.json|
groupManager.json|
pre-commit.json|
monthly.json|
update-github-actions.json|
update-gitlab-ci.json|
update-pre-commit.json|
weekly.json|
(?!)
)$