feat(dev): Install and configure pre-commit
This commit is contained in:
27
.pre-commit-config.yaml
Normal file
27
.pre-commit-config.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
repos:
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: commitizen
|
||||
name: commitizen check
|
||||
description: |
|
||||
Check whether the current commit message follows committing rules. Allow empty commit messages by default,
|
||||
because they typically indicate to Git that the commit should be aborted.
|
||||
entry: uv run cz check
|
||||
args: [--allow-abort, --commit-msg-file]
|
||||
stages: [commit-msg]
|
||||
language: system
|
||||
minimum_pre_commit_version: "1.4.3"
|
||||
- id: commitizen-branch
|
||||
name: commitizen check branch
|
||||
description: |
|
||||
Check all commit messages that are already on the current branch but not the default branch on the origin
|
||||
repository. Useful for checking messages after the fact (e.g., pre-push or in CI) without expensive check of
|
||||
the entire repository history.
|
||||
entry: uv run cz check
|
||||
args: [--rev-range, origin/HEAD..HEAD]
|
||||
always_run: true
|
||||
pass_filenames: false
|
||||
language: system
|
||||
stages: [pre-push]
|
||||
minimum_pre_commit_version: "1.4.3"
|
Reference in New Issue
Block a user