forked from demeesterdev/cert-manager-webhook-transip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
33 lines (33 loc) · 1.02 KB
/
.pre-commit-config.yaml
File metadata and controls
33 lines (33 loc) · 1.02 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
repos:
- repo: https://github.com/dadav/helm-schema
rev: 0.12.0
hooks:
- id: helm-schema
# for all available options: helm-schema -h
args:
# directory to search recursively within for charts
- --chart-search-root=charts
# don't analyze dependencies
- --no-dependencies
# add references to values file if not exist
- --add-schema-reference
# make all specified values optional (as they are already in values.yaml)
- --skip-auto-generation=required
stages: [manual]
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.1.15
hooks:
- id: helmlint
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
hooks:
- id: end-of-file-fixer
files: (?!values.schema.json)
- id: trailing-whitespace
- repo: https://github.com/golangci/golangci-lint
rev: v2.1.6
hooks:
- id: golangci-lint-config-verify
- id: golangci-lint
args:
- --fast