forked from dwp/govuk-casa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
53 lines (50 loc) · 1.44 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
---
default_install_hook_types:
- pre-commit
- commit-msg
- post-commit
default_stages:
- commit
fail_fast: true
repos:
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
rev: v9.3.0
hooks:
- id: commitlint
stages:
- commit-msg
additional_dependencies:
- "@dwp/commitlint-config-base"
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: check-merge-conflict
- id: detect-private-key
- id: fix-byte-order-marker
- id: forbid-new-submodules
- id: mixed-line-ending
args:
- --fix=no
- id: no-commit-to-branch
args:
- --branch=main
- id: trailing-whitespace
args:
- --markdown-linebreak-ext=md
- repo: https://github.com/Yelp/detect-secrets
rev: v1.4.0
hooks:
- id: detect-secrets
language: python
# The "secret" variable name is used innocently in a few places
args: ["--exclude-lines", "secret: 'secret'", "--exclude-lines", 'secret ==', "--exclude-lines", 'secret !=']
- repo: https://gitlab.com/adam-moss/pre-commit-trailer
rev: v1.1.0
hooks:
- id: add-pre-commit-config-trailer