@jpapini/commitlint-config
Version:
Custom commitlint configuration.
29 lines (20 loc) • 528 B
Markdown
# Commitlint configuration
Custom commitlint configuration that extends `@commitlint/config-conventional`.
## How to use
1. Install the package and its required peer dependencies:
```bash
pnpm add -D @jpapini/commitlint-config @commitlint/cli
```
2. Edit your `package.json` file to include the following:
```json
{
"scripts": {
"lint:commit": "commitlint --from=main"
},
"commitlint": {
"extends": "@jpapini/commitlint-config"
}
}
```
## Author
- Julien Papini <julien.papini@gmail.com>