-
Notifications
You must be signed in to change notification settings - Fork 20
/
.pre-commit-config.yaml
39 lines (35 loc) · 1017 Bytes
/
.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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: check-merge-conflict
- id: check-case-conflict
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
hooks:
- id: remove-crlf
- id: remove-tabs
- repo: local
hooks:
- id: ah-lint
name: Artifact Hub Lint
entry: ah lint --path=charts
language: system
files: ^charts/
pass_filenames: false
- id: helm-docs
name: Helm Docs
entry: hack/gen-helm-docs.sh
language: script
files: (README_CONFIG\.md\.gotmpl|(Chart|requirements|values)\.yaml)$
pass_filenames: false
- id: gen-chart-summary
name: Generate Chart Summary
entry: hack/gen-chart-summary.sh
language: system
files: Chart\.yaml$
pass_filenames: false