-
Notifications
You must be signed in to change notification settings - Fork 520
/
Copy path.pre-commit-config.yaml
87 lines (80 loc) · 2.69 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
exclude: _generated.go$|\.svg$|^third_party/|^proto/swagger/|^apiserver/pkg/swagger/datafile.go$|^docs/reference/api.md$|^config/grafana/
default_language_version:
golang: 1.24.2
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
args: [--allow-multiple-documents]
exclude: ^helm-chart/|^mkdocs\.yml$|^benchmark/perf-tests/|^\.krew\.yaml$
- id: check-added-large-files
- id: check-merge-conflict
- id: check-case-conflict
- id: check-vcs-permalinks
- id: check-json
- id: pretty-format-json
args: [--autofix, --no-sort-keys, --no-ensure-ascii]
- id: mixed-line-ending
args: [--fix=lf]
- id: detect-private-key
- repo: https://github.com/gitleaks/gitleaks
rev: v8.18.2
hooks:
- id: gitleaks
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
- repo: local
hooks:
- id: golangci-lint
name: golangci-lint
entry: ./scripts/lint.sh
types: [go]
language: golang
require_serial: true
always_run: true
pass_filenames: false
additional_dependencies:
- github.com/golangci/golangci-lint/cmd/[email protected]
- id: generate-crd-schema
name: generate CRD schemas for use of kubeconform
entry: ./scripts/generate-crd-schema.sh
language: python
require_serial: true
always_run: true
pass_filenames: false
additional_dependencies:
- PyYAML==6.0.1
- id: validate-helm-charts
name: validate helm charts with kubeconform
entry: bash scripts/validate-helm.sh
language: golang
require_serial: true
always_run: true
pass_filenames: false
additional_dependencies:
- github.com/yannh/kubeconform/cmd/[email protected]
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.44.0
hooks:
- id: markdownlint-fix
name: Markdown linting
args:
- --ignore=.github/pull_request_template.md
- --disable=MD033
- repo: https://github.com/norwoodj/helm-docs
rev: v1.14.2
hooks:
- id: helm-docs-built
args:
# Make the tool search for charts only under the `helm-chart` directory
- --chart-search-root=helm-chart
- --chart-to-generate=helm-chart/kuberay-operator
- --template-files=README.md.gotmpl
- --sort-values-order=file