0.1.0 • Published 2 years ago

@makeheadway/commitlint-config v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@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;