9 lines
230 B
Plaintext
Executable File
9 lines
230 B
Plaintext
Executable File
#
|
|
# Husky Commit Message Hook
|
|
# Validates commit message format using commitlint
|
|
#
|
|
|
|
# Run commitlint but don't fail the commit (|| true)
|
|
# This provides helpful feedback without blocking commits
|
|
npx commitlint --edit "$1" || true
|