-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
47 lines (41 loc) · 1.05 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
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-case-conflict
- id: check-merge-conflict
- id: check-executables-have-shebangs
- id: check-yaml
- repo: https://github.com/adrienverge/yamllint
rev: v1.26.0
hooks:
- id: yamllint
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.1.12
hooks:
- id: shellcheck
- repo: https://github.com/frnmst/md-toc
rev: 7.1.0
hooks:
- id: md-toc
args: [-p, --skip-lines, '2', 'github']
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.26.0
hooks:
- id: markdownlint
- repo: https://github.com/Agilicus/pre-commit-hook-k8svalidate
rev: v0.0.8
hooks:
- id: k8svalidate
args: [--strict]
files: .yaml$
- repo: https://github.com/bridgecrewio/checkov
rev: '1.0.837'
hooks:
- id: checkov
verbose: true
files: .yaml$
args: [--quiet]