-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
63 lines (63 loc) · 1.72 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
---
default_install_hook_types:
- pre-commit
- commit-msg
repos:
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.32.0
hooks:
- id: yamllint
args:
- "-c"
- "./.yamllint.yml"
stages: [commit]
- repo: https://github.com/cicd-tools-org/pre-commit.git
rev: e896c2458780ceaf5b4bb41fa17fce39dfd083d4
hooks:
- id: cicd-tools-box
- id: cicd-tools-key
- id: format-shell
exclude: "^\\.cicd-tools/boxes/disabled$"
- id: format-toml
- id: git-conflict-markers
- id: lint-github-workflow
- id: lint-github-workflow-header
- id: lint-markdown
- id: lint-shell
exclude: "^\\.cicd-tools/boxes/disabled$"
- id: pre-commit-sort-config
- id: pre-commit-sort-hooks
- id: security-credentials
- id: spelling-commit-message
- id: spelling-markdown
- id: spelling-vale-sync
- id: spelling-vale-vocab
- repo: https://github.com/commitizen-tools/commitizen
rev: v3.2.2
hooks:
- id: commitizen
stages: [commit-msg]
- repo: https://github.com/psf/black
rev: 24.8.0
hooks:
- id: black
args:
- "--safe"
- "-l"
- "80"
stages: [commit]
- repo: https://github.com/pycqa/isort
rev: 5.13.0
hooks:
- id: isort
stages: [commit]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.22.0
hooks:
- id: check-jsonschema
name: check-github-workflow-push-schema
files: "^\\.github/config/workflows/workflow-push.json$"
args:
- "--schemafile"
- ".github/config/schemas/workflows/workflow-push.json"
stages: [commit]