commitlint-plugin-regex-match
Version:
The commitlint plugin to add function that allow match regex in the commit message
18 lines (16 loc) • 383 B
JavaScript
module.exports = {
rules: {
'body-match': function (parsed, when, value) {
const { raw = '' } = parsed;
if (!value) {
return [true];
}
const regex = new RegExp(value, 'ig');
const matched = raw.match(regex) != null;
return [
matched,
'commit message doest not match with pattern : ' + value,
];
},
},
};