Shareable `commitlint` config enforcing our commit convention
Shareable commitlint
config enforcing our commit convention. Originally based upon the AngularJS Commit Message Guidelines and derived from @commitlint/config-angular"">@commitlint/config-angular.
Use with @commitlint/cli"">@commitlint/cli and @commitlint/prompt-cli"">@commitlint/prompt-cli.
npm install --save-dev @dwp/commitlint-config-base @commitlint/cli
Add a commitlint.config.js
file that looks something like:
module.exports = require( '@dwp/commitlint-config-base' );
You can add your own rules to enhance this, but in doing so please ensure you don’t weaken the baseline ruleset.
Add commitlint
to your test suite like this, or see our package.json for an example of how we do it:
"test": "commitlint --from=develop --to=HEAD"