Fork of husky which hides npm Err messages
npm install husky-silentThis project is a fork of husky with an additional config to
silence all these pesky npm ERR messages.
Same as husky. Simply install it:
``bash`
npm install husky-silent --save-dev
Silencing npm ERR messages by adding a config setting to your package.json:
`json``
{
"name": "mypackage",
"config": {
"husky": {
"silent": "true"
}
}
}
For more information see the upstream husky repository.
MIT