commitlint-plugin-regexscope
v0.0.1
Published
Commitlint plugin that supports only check regex match scope parts
Downloads
529
Readme
Commitlint Plugin Regexscope
A commitlint pulgin that supports only check regex match scope parts
Getting Started
npm install --save-dev commitlint-plugin-regexscopeAnd confighure commitlint.config.js to use regexscope plugin.
module.exports = {
plugins: ['commitlint-plugin-regexscope'],
rules: {
'regexscope': [2, 'always', {
pattern: '',
clean: null,
enum: [
'core',
'ui'
],
case: 'lower-case'
}]
}
}options: RegexScopeOptions
pattern?: string | RegExp- specify substring which you want to check
- default: ``
clean?: string | RegExp- clean your substring to match enum
- default:
null
enum?: string[]- conditon:
regex matched subscopeis found inenum - default:
[]
- conditon:
case?: string- condition:
scopeis incase - default:
lower-case
- condition:
