27 lines
662 B
TypeScript
27 lines
662 B
TypeScript
import type { UserConfig } from '@commitlint/types';
|
|
import { RuleConfigSeverity } from '@commitlint/types';
|
|
|
|
const Configuration: UserConfig = {
|
|
// 类angular插件的提交规范,详情规则可见:https://github.com/conventional-changelog/commitlint/tree/master/@commitlint/config-conventional
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
// 自定义规则
|
|
'type-enum': [RuleConfigSeverity.Error, 'always', [
|
|
'init',
|
|
'build',
|
|
'chore',
|
|
'ci',
|
|
'docs',
|
|
'feat',
|
|
'fix',
|
|
'perf',
|
|
'refactor',
|
|
'revert',
|
|
'style',
|
|
'test',
|
|
]],
|
|
},
|
|
};
|
|
|
|
export default Configuration;
|