-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
39 lines (39 loc) · 1.05 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
39 lines (39 loc) · 1.05 KB
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
default_install_hook_types: [pre-commit, commit-msg]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
stages: [pre-commit]
- id: check-case-conflict
stages: [pre-commit]
- id: check-merge-conflict
stages: [pre-commit]
- id: forbid-new-submodules
stages: [pre-commit]
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: forbid-binary
stages: [pre-commit]
exclude: >
(?x)^(
public/icons/.*|
wallpaper/.*|
firefox/.*mozlz4|
vlc/.*vlt
)$
- id: git-dirty
stages: [pre-commit]
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
hooks:
- id: forbid-crlf
stages: [pre-commit]
- id: remove-crlf
stages: [pre-commit]
- repo: https://github.com/commitizen-tools/commitizen
rev: v4.7.2
hooks:
- id: commitizen
stages: [commit-msg]