Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 639 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 639 Bytes

Verify Commit Messgae

Git Commit Message Convention

This is adapted from Commit convention.

Installation

npm i verify-commit-msg -D

Update script package.json

 "scripts": {
    "verify-commit": "verify-commit-msg"
  },

Usage with husky

Config .husky/commit-msg

#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run verify-commit

Usage with simple-git-hooks

Install

npm i simple-git-hooks -D

Update package.json

"simple-git-hooks": {
  "commit-msg": "npm run verify-commit"
},