An open API service indexing awesome lists of open source software.

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.

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'],
};
```