-
Notifications
You must be signed in to change notification settings - Fork 21
/
.pre-commit-config.yaml
40 lines (40 loc) · 1.04 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
# .pre-commit-config.yaml
default_stages: [commit]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-json
- id: check-merge-conflict
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: pretty-format-json
args:
- --autofix
- id: detect-aws-credentials
args:
- --allow-missing-credentials
- id: detect-private-key
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.88.4
hooks:
- id: terraform_fmt
- id: terraform_tflint
- id: terraform_docs
- id: terraform_validate
- repo: https://github.com/bridgecrewio/checkov.git
rev: 3.2.60
hooks:
- id: checkov
verbose: false
args:
- --download-external-modules
- "true"
- --quiet
- --compact
- --skip-check
- CKV_GIT_5,CKV_GLB_1,CKV_TF_1
- --skip-path
- examples/*