@nake/commitlint-config
v1.0.0
Published
Shareable commitlint configuration used by nake applications
Downloads
2
Readme
@nake/commitlint-config
Shareable commitlint configuration used by nake applications
Installation
Use npx to install peerdeps automatically or install peerDependencies with npm/yarn manually.
# Install with npx
$ npx install-peerdeps --dev @nake/commitlint-config
# Install with yarn
$ yarn add --dev @commitlint/cli @nake/commitlint-config
Usage
Reference it in your package.json
:
{
"name": "nake-project",
"version": "1.0.0",
"commitlint": {
"extends": ["@nake/commitlint-config"]
}
}
You can override configs aflter require module in commitlint.config.js
.
module.exports = {
extends: ['@nake/commitlint-config'],
// Override commitlint rules below
rules: {},
};
License
MIT