<!--- Provide a general summary of the issue in the Title above --> ## Expected Behavior The following Husky hook used to work perfectly with "@commitlint/cli": "^7.2.1" and "husky": "^1.2.1" ``` "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, ``` ## Current Behavior Today I started getting the following error: >Please add rules to your commitlint.config.js I have never needed this file before!  ## Affected packages * [x] cli * [ ] core * [ ] prompt * [ ] config-angular ## Possible Solution I added the commitlint.config.js file to fix the problem, but it seems mysterious how this started appearing suddenly. Note: I do not understand how HUSKY_GIT_PARAMS works. The husky documents do not quite explain it. ## Steps to Reproduce (for bugs) You can see my fixed project here: https://github.com/archfirst/joinjs. The [previous commit](https://github.com/archfirst/joinjs/tree/467f835a744d5ef3783758990252969f8c97f106) did not work.