cloud_bbb/.commitlintrc.json

29 lines
492 B
JSON

{
"extends": ["@commitlint/config-conventional"],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"ci",
"chore",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"example"
]
],
"body-max-line-length": [
1,
"always",
100
]
}
}