mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 03:01:16 +00:00
22 lines
316 B
JavaScript
22 lines
316 B
JavaScript
export default {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'feat',
|
|
'fix',
|
|
'docs',
|
|
'chore',
|
|
'style',
|
|
'refactor',
|
|
'ci',
|
|
'test',
|
|
'revert',
|
|
'perf',
|
|
],
|
|
],
|
|
}
|
|
};
|