https://github.com/somehow-digital/commitlint-plugin-spellcheck
Spellcheck commit messages via commitlint and cspell.
https://github.com/somehow-digital/commitlint-plugin-spellcheck
commitlint commitlintplugin cspell spellcheck
Last synced: about 1 month ago
JSON representation
Spellcheck commit messages via commitlint and cspell.
- Host: GitHub
- URL: https://github.com/somehow-digital/commitlint-plugin-spellcheck
- Owner: somehow-digital
- Created: 2024-05-19T11:55:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-24T12:03:29.000Z (about 2 months ago)
- Last Synced: 2025-08-24T17:53:46.100Z (about 2 months ago)
- Topics: commitlint, commitlintplugin, cspell, spellcheck
- Language: JavaScript
- Homepage: https://somehow.digital
- Size: 1.04 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# `spellcheck` plugin for `commitlint`
> Spellcheck commit messages via `cspell`.
---
**install**
```sh
pnpm add -D @somehow-digital/commitlint-plugin-spellcheck
```**use**
```js
export default {
rules: {
'spellcheck/header': [2, 'always'],
'spellcheck/body': [2, 'always'],
'spellcheck/footer': [2, 'always'],
'spellcheck/scope': [2, 'always'],
'spellcheck/subject': [2, 'always'],
'spellcheck/type': [2, 'always'],
},
plugins: ['@somehow-digital/commitlint-plugin-spellcheck'],
};
```