pnpm add commitlint-plugin-cspell -D
This config shows all the rules provided by this plugin. You must use at least one of them to get spell checking.
ℹ️ If you're using conventional commits, you'll probably want to use cspell/type
, cspell/scope
, and cspell/subject
instead of cspell/header
.
Example commitlint.config.mjs
:
/**
* @type {import('@commitlint/types').UserConfig}
*/
export default {
plugins: ['commitlint-plugin-cspell'],
rules: {
'cspell/type': [2, 'always'],
'cspell/scope': [2, 'always'],
'cspell/subject': [2, 'always'],
'cspell/header': [2, 'always'],
'cspell/body': [2, 'always'],
'cspell/footer': [2, 'always'],
},
};