-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpre-commit-helm-charts.yaml
56 lines (51 loc) · 1.31 KB
/
pre-commit-helm-charts.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
default_install_hook_types:
- pre-commit
- commit-msg
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
stages: [commit]
- id: end-of-file-fixer
exclude: /secrets
stages: [commit]
- id: check-added-large-files
stages: [commit]
- id: check-yaml
args:
- --allow-multiple-documents
exclude: /templates|/secrets|helmfile.yaml
stages: [commit]
- id: check-json
stages: [commit]
- id: check-toml
stages: [commit]
- id: check-shebang-scripts-are-executable
stages: [commit]
exclude: .+\.j2$
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v2.3.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
- repo: https://github.com/gitleaks/gitleaks
rev: v8.16.4
hooks:
- id: gitleaks
stages: [commit]
- repo: https://github.com/norwoodj/helm-docs
rev: v1.11.0
hooks:
- id: helm-docs
args:
- --chart-search-root=.
- --skip-version-footer
stages: [commit]
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.1.22
hooks:
- id: helmlint
args:
- --strict
stages: [commit]