-
Notifications
You must be signed in to change notification settings - Fork 23
/
.pre-commit-config.yaml
48 lines (48 loc) · 1.32 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
repos:
- repo: https://github.com/norwoodj/helm-docs
rev: v1.11.0
hooks:
- id: helm-docs
args:
- --chart-search-root=charts
- --template-files=README.md.gotmpl
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.17.0
hooks:
- id: yamllint
args: [-c=.yamllint.yaml]
- repo: https://github.com/zricethezav/gitleaks
rev: v8.15.3
hooks:
- id: gitleaks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-added-large-files
args: ["--maxkb=500"]
name: check for added large files
description: prevents giant files from being committed
entry: check-added-large-files
language: python
stages:
- commit
- push
- manual
- id: check-json
name: check json
description: checks json files for parseable syntax.
entry: check-json
language: python
types:
- json
- id: no-commit-to-branch
args: ["--branch", "main"]
- repo: https://github.com/milin/giticket
rev: v1.4
hooks:
- id: giticket
args: ["--mode=regex_match", "--format=[{ticket}] {commit_msg}"]
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.1.18
hooks:
- id: helmlint