-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.pre-commit-config.yaml
125 lines (124 loc) · 3.16 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Copyright 2022-2023 D2iQ, Inc. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
repos:
- repo: local
hooks:
- id: golangci-lint
name: golangci-lint
entry: make go-generate lint
language: system
files: "(.*\\.go|go.mod|go.sum|go.mk)$"
pass_filenames: false
stages: [pre-commit]
- repo: https://github.com/tekwizely/pre-commit-golang
rev: v1.0.0-rc.1
hooks:
- id: go-mod-tidy-repo
stages: [pre-commit]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
stages: [pre-commit]
- id: check-yaml
args: ["-m", "--unsafe"]
stages: [pre-commit]
exclude: ^charts/.+/templates/
- id: mixed-line-ending
args: ["-f", "lf"]
exclude: \.bat$
stages: [pre-commit]
- id: no-commit-to-branch
stages: [pre-commit]
- id: check-added-large-files
stages: [pre-commit]
- id: check-case-conflict
stages: [pre-commit]
- id: check-merge-conflict
stages: [pre-commit]
- id: check-executables-have-shebangs
stages: [pre-commit]
- id: check-symlinks
stages: [pre-commit]
- id: end-of-file-fixer
stages: [pre-commit]
exclude: ^charts/.+/README.md$
- repo: https://github.com/rhysd/actionlint
rev: v1.7.7
hooks:
- id: actionlint-system
stages: [pre-commit]
- repo: https://github.com/hadolint/hadolint
rev: v2.13.1-beta
hooks:
- id: hadolint
- repo: https://github.com/jorisroovers/gitlint
rev: v0.19.1
hooks:
- id: gitlint
- id: gitlint-ci
args: ["--commits", "origin/main..HEAD"]
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: shfmt
stages: [pre-commit]
args: ["-s", "-i", "2"]
- id: script-must-have-extension
stages: [pre-commit]
exclude: ^\.envrc$
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
stages: [pre-commit]
args: ["-x"]
exclude: ^\.envrc$
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.44.0
hooks:
- id: markdownlint
stages: [pre-commit]
exclude: ^(CHANGELOG.md|charts/.+/README.md)$
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
hooks:
- id: insert-license
name: License headers - Go
stages: [pre-commit]
files: "(.*\\.go|go.mod)$"
exclude: zz_generated
args:
- --license-filepath
- header.txt
- --comment-style
- //
- --allow-past-years
- id: insert-license
name: License headers - YAML and Makefiles
stages: [pre-commit]
files: (^Makefile|\.(ya?ml|mk))$
args:
- --license-filepath
- header.txt
- --allow-past-years
exclude: ^charts/.+/(templates/.+\.yaml|crds/.+\.yaml)$
- id: insert-license
name: License headers - Markdown
stages: [pre-commit]
files: \.md$
exclude: ^CHANGELOG.md$
args:
- --license-filepath
- header.txt
- --comment-style
- <!--|| -->
- --allow-past-years
- repo: https://github.com/norwoodj/helm-docs
rev: v1.14.2
hooks:
- id: helm-docs
stages: [pre-commit]
args:
# Make the tool search for charts only under the `example-charts` directory
- --chart-search-root=charts