-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
31 lines (29 loc) · 741 Bytes
/
Copy path.pre-commit-config.yaml
File metadata and controls
31 lines (29 loc) · 741 Bytes
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
# https://pre-commit.com/
# Install: pip install pre-commit && pre-commit install --install-hooks
# Commit messages must match AGENTS.md (Conventional Commits + required scope).
default_install_hook_types:
- pre-commit
- commit-msg
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-yaml
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v4.4.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
args:
- --force-scope
- feat
- fix
- docs
- style
- refactor
- perf
- test
- build
- ci
- chore
- revert