layui/commitlint.config.js

21 lines
327 B
JavaScript
Raw Normal View History

module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [2,
"always",
[
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test'
]
],
},
2022-04-05 10:31:31 +08:00
};