shareable config for commitlint
Purpose
This is my shareable config
for commitlint. My config mostly
follows angular commit convention,
as implemented in @commitlint/config-angular.
Beyond what is implemented in the @commitlint/config-angular
, I also enable
a type
of wip
for commits that don't fit the default types. This is most often
because the does not complete one of default types, but is instead progress
toward one.
Usage
Installation
$ npm install commitlint-config-travi -D
Define the config for your project
$ echo "module.exports = {extends: ['travi']};" > commitlint.config.js
Define the npm script for husky
{
"scripts": {
"commitmsg": "commitlint -e"
}
}