forked from telekom-mms/web3-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
49 lines (49 loc) · 1.27 KB
/
.pre-commit-config.yaml
File metadata and controls
49 lines (49 loc) · 1.27 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
---
repos:
- repo: local
hooks:
- id: commitizen
name: commitizen-check
entry: cz check --commit-msg-file
language: system
stages: [commit-msg]
- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: "v5.0.0"
hooks:
- id: "check-case-conflict"
- id: "check-yaml"
exclude: |
(?x)(
^charts/.*/helmfile\.yaml|
^charts/.*/templates/
)
- id: "check-json"
- id: "check-shebang-scripts-are-executable"
- id: "detect-private-key"
- id: "end-of-file-fixer"
- id: "mixed-line-ending"
- id: "trailing-whitespace"
- repo: "https://github.com/adrienverge/yamllint.git"
rev: "v1.35.1"
hooks:
- id: "yamllint"
exclude: "^charts/.*/templates/"
args:
- "--strict"
- repo: "https://github.com/igorshubovych/markdownlint-cli"
rev: "v0.34.0"
hooks:
- id: "markdownlint"
- repo: "https://github.com/koalaman/shellcheck-precommit"
rev: "v0.10.0"
hooks:
- id: "shellcheck"
- repo: "https://github.com/maxwinterstein/shfmt-py"
rev: "v3.4.3.1"
hooks:
- id: "shfmt"
- repo: "https://github.com/rhysd/actionlint"
rev: "v1.7.7"
hooks:
- id: "actionlint"
...