-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
126 lines (126 loc) · 2.35 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
126
repos:
-
repo: 'https://github.com/chriskuehl/puppet-pre-commit-hooks.git'
rev: v2.0.1
hooks:
-
id: puppet-validate
stages:
- commit
- push
-
id: erb-validate
stages:
- commit
- push
-
id: epp-validate
stages:
- commit
- push
-
id: puppet-lint
stages:
- commit
- push
-
repo: 'git://github.com/pre-commit/pre-commit-hooks'
rev: v1.2.3
hooks:
-
id: trailing-whitespace
stages:
- commit
- push
-
id: check-json
stages:
- commit
- push
-
id: flake8
stages:
- commit
- push
exclude: ^bootstrap.py$
-
id: check-yaml
stages:
- commit
- push
-
id: check-json
stages:
- commit
- push
-
id: check-merge-conflict
stages:
- commit
- push
-
id: debug-statements
stages:
- commit
- push
-
id: fix-encoding-pragma
stages:
- commit
- push
-
id: check-symlinks
stages:
- commit
- push
-
id: debug-statements
stages:
- commit
- push
-
repo: 'https://github.com/jumanjihouse/pre-commit-hooks.git'
rev: 1.6.0
hooks:
-
id: shellcheck
stages:
- commit
- push
-
id: shfmt
stages:
- commit
- push
-
repo: 'https://github.com/asottile/yesqa'
rev: f657d64b0ca01f7f44ee0006c2990af988139c28
hooks:
-
id: yesqa
stages:
- commit
- push
-
repo: 'https://github.com/adrienverge/yamllint'
rev: 506e066410052c42da36c237b8ba3c661448c86b
hooks:
-
id: yamllint
stages:
- commit
- push
-
repo: local
hooks:
-
id: check-dockerfile
name: 'Check dockerfile'
entry: 'bash -c "docker run --rm -i hadolint/hadolint < Dockerfile"'
pass_filenames: false
language: system
types:
- dockerfile
stages:
- commit
- push