-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pre-commit-config.yaml
99 lines (98 loc) · 2.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
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
# Copyright 2022 D2iQ, Inc. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
repos:
- repo: local
hooks:
- id: go-mod-tidy
name: go mod tidy
entry: make mod-tidy
files: "(.*\\.go|go.mod|go.sum)$"
language: system
stages: [commit]
pass_filenames: false
- id: golangci-lint
name: golangci-lint
entry: make lint
language: system
files: "(.*\\.go|go.mod|go.sum)$"
pass_filenames: false
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: trailing-whitespace
stages: [commit]
- id: check-yaml
args: ["-m", "--unsafe"]
stages: [commit]
- id: mixed-line-ending
args: ["-f", "lf"]
exclude: \.bat$
stages: [commit]
- id: no-commit-to-branch
stages: [commit]
- id: check-added-large-files
stages: [commit]
- id: check-case-conflict
stages: [commit]
- id: check-merge-conflict
stages: [commit]
- id: check-executables-have-shebangs
stages: [commit]
- id: check-symlinks
stages: [commit]
- id: end-of-file-fixer
stages: [commit]
- repo: https://github.com/jorisroovers/gitlint
rev: v0.17.0
hooks:
- id: gitlint
stages: [commit-msg]
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: shfmt
stages: [commit]
args: ["-s", "-i", "2"]
- id: script-must-have-extension
stages: [commit]
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.8.0.4
hooks:
- id: shellcheck
stages: [commit]
args: ["-e", "SC2211"]
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.32.2
hooks:
- id: markdownlint
stages: [commit]
exclude: ^CHANGELOG.md$
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.3.1
hooks:
- id: insert-license
name: License headers - Go
stages: [commit]
files: "(.*\\.go|go.mod)$"
args:
- --license-filepath
- header.txt
- --comment-style
- //
- id: insert-license
name: License headers - YAML and Makefiles
stages: [commit]
files: (^Makefile|\.(ya?ml|mk))$
args:
- --license-filepath
- header.txt
- id: insert-license
name: License headers - Markdown
stages: [commit]
files: \.md$
exclude: ^CHANGELOG.md$
args:
- --license-filepath
- header.txt
- --comment-style
- <!--|| -->