A Commitlint plugin that is containing some toolkits for checking the commit message
npm install commitlint-plugin-prevenger






Make your git commit message much more elegant
``sh `
npm i @commitlint/cli @commitlint/config-conventional commitlint-plugin-prevenger --save-dev
javascript
module.exports = {
plugins: ["commitlint-plugin-prevenger"],
rules: {
"commitlint-plugin-prevenger/scope-pattern": [
2,
"always",
["^core$"]
]
}
}
``