demo-ui/commitlint.config.js

27 lines
379 B
JavaScript

module.exports = {
extends: [
'@commitlint/config-conventional'
// 'gitmoji'
],
rules: {
'type-enum': [
2,
'always',
[
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
'improvement'
]
]
}
}