antd-tiny-vue/.commitlintrc
2023-02-16 22:11:44 +08:00

22 lines
306 B
Plaintext

{
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"feat",
"fix",
"refactor",
"test",
"build",
"docs",
"chore"
]
],
"subject-max-length": [1,"always", 150]
}
}