1.0.0 • Published 5 years ago

@nake/commitlint-config v1.0.0

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

@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