-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
33 lines (32 loc) · 1010 Bytes
/
.pre-commit-config.yaml
File metadata and controls
33 lines (32 loc) · 1010 Bytes
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
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- 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.36.0
hooks:
- id: check-github-workflows
name: Check GitHub workflows with check-jsonschema
args: ["--verbose"]
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 42.70.3
hooks:
- id: renovate-config-validator
name: Check Renovate config with renovate-config-validator
files: |
(?x)(
(^|/).?renovate(?:rc)?(?:\.json5?)?$|
default.json|
copier.json|
pre-commit.json|
monthly.json|
weekly.json|
(?!)
)$