husky-check-name
v0.0.3
Published
check user name against email before git commit
Downloads
3
Readme
husky-check-name
Add this module to check that user names correspond to their emails.
For example, user with email "[email protected]" should have git name "Kate", and user with name "[email protected]" should have git name "Vladimir Putin".
Install
npm i husky-check-name
Usage (package.json)
{
"husky": {
"hooks": {
"pre-commit": "husky-check-name"
}
}
}