-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
59 lines (58 loc) · 1.38 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
---
default_install_hook_types:
- pre-commit
- pre-merge-commit
- pre-push
- prepare-commit-msg
- commit-msg
- post-commit
- post-checkout
- post-merge
- post-rewrite
fail_fast: false
repos:
- repo: https://github.com/rhysd/actionlint
rev: v1.6.25
hooks:
- id: actionlint
stages: [commit]
- repo: https://github.com/hadolint/hadolint
rev: v2.12.1-beta
hooks:
- id: hadolint-docker
stages: [commit]
- repo: meta
hooks:
- id: check-hooks-apply
stages: [manual]
- id: check-useless-excludes
stages: [manual]
- id: identity
stages: [manual]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-added-large-files
stages: [commit]
- id: check-ast
stages: [commit]
- id: check-executables-have-shebangs
stages: [commit]
- id: check-json
stages: [commit]
- id: check-merge-conflict
stages: [commit]
- id: check-shebang-scripts-are-executable
stages: [commit]
- id: check-toml
stages: [commit]
- id: debug-statements
stages: [commit]
- id: detect-private-key
stages: [commit]
- id: end-of-file-fixer
stages: [commit]
- id: mixed-line-ending
stages: [commit]
- id: trailing-whitespace
stages: [commit]