@makeheadway/commitlint-config
v0.1.0
Published
Custom Headway Commitlint configuration
Downloads
1
Readme
@makeheadway/commitlint-config
Custom Headway Commitlint configuration.
Installing
Using NPM
npm install --save-dev @commitlint/cli @makeheadway/commitlint-config;
Using Yarn
yarn add --dev @commitlint/cli @makeheadway/commitlint-config;
Setting config
By hands
Add the following in .commitlintrc.js
:
module.exports = {
extends: ['@makeheadway/commitlint-config'],
...
};
Or use the following command, if you does not have Commitlint
yet:
By command
echo "module.exports = { extends: ['@makeheadway/commitlint-config'], };" > .commitlintrc.js;