ray-template/commitlint.config.cjs
2023-07-05 10:52:54 +08:00

22 lines
320 B
JavaScript

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