-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
36 lines (34 loc) · 1002 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-added-large-files
args: ["--maxkb=1024"]
- id: detect-private-key
- id: mixed-line-ending
args: ["--fix=lf"]
- id: check-json
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-ast
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: detect-aws-credentials
args: ["--allow-missing-credentials"]
- id: fix-byte-order-marker
- repo: https://github.com/norwoodj/helm-docs
rev: v1.11.3
hooks:
- id: helm-docs
- repo: local
hooks:
- id: helm lint
name: helm-lint
entry: bash -c "cd charts && helm lint *"
language: system
pass_filenames: false
- id: helm unittest
name: helm-unittest
entry: bash -c "cd charts && helm unittest *"
language: system
pass_filenames: false