cloud_bbb/.commitlintrc.json

31 lines
535 B
JSON
Raw Normal View History

2020-04-26 22:43:52 +02:00
{
"extends": ["@commitlint/config-conventional"],
"rules": {
"type-enum": [
2,
"always",
[
"l10n",
"release",
2020-04-26 22:43:52 +02:00
"build",
"ci",
"chore",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"example"
]
],
"body-max-line-length": [
1,
"always",
100
]
}
}