-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
65 lines (65 loc) · 2.25 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
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
##############################################################################
################################ General Checks ##############################
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
exclude: .gitignore
- id: end-of-file-fixer
- id: check-yaml
exclude: mkdocs.yml
- id: check-added-large-files
args: [--maxkb=1500]
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: debug-statements
- id: detect-private-key
##############################################################################
################################ Security Checks #############################
- repo: https://github.com/Yelp/detect-secrets
rev: v1.5.0
hooks:
- id: detect-secrets
name: Detect secrets
args:
- --disable-plugin
- KeywordDetector
- --disable-plugin
- Base64HighEntropyString
- --exclude-secrets
- "[0-9a-f]{40}" # commit shas
- repo: https://github.com/gitleaks/gitleaks
rev: v8.21.2
hooks:
- id: gitleaks
##############################################################################
################################ YAML Checks #################################
- repo: https://github.com/google/yamlfmt
rev: v0.14.0
hooks:
- id: yamlfmt
- repo: https://github.com/adrienverge/yamllint
rev: v1.35.1
hooks:
- id: yamllint
##############################################################################
################################ Linting Checks #############################
# - repo: local
# hooks:
# - id: prettier
# name: prettier-local
# entry: bunx prettier --config .prettierrc.json --check .
# language: system
# types: [file]
# pass_filenames: true
##############################################################################
################################ Shell Checks ################################
# - repo: https://github.com/gruntwork-io/pre-commit
# rev: v0.1.24
# hooks:
# - id: shellcheck