We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f0f95a commit 5bb6907Copy full SHA for 5bb6907
README.md
@@ -93,7 +93,11 @@ npm install --save-dev @commitlint/config-conventional @commitlint/cli
93
echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js
94
```
95
96
-To lint commits before they are created you can use Husky's 'commit-msg' hook:
+To lint commits before they are created you can use Husky's 'commit-msg' hook.
97
+
98
+Install in your project `npm install husky --save-dev` or `yarn add -D husky`.
99
100
+After that, you can create a `.huskyrc` file or add to your `package.json` the following code:
101
102
```json
103
{
0 commit comments