14 lines
411 B
JSON
14 lines
411 B
JSON
|
|
{
|
||
|
|
"extends": ["@commitlint/config-conventional"],
|
||
|
|
"rules": {
|
||
|
|
"body-max-line-length": [2, "always", 100],
|
||
|
|
"header-max-length": [2, "always", 100],
|
||
|
|
"subject-case": [2, "never", ["sentence-case", "start-case", "pascal-case", "upper-case"]],
|
||
|
|
"type-enum": [
|
||
|
|
2,
|
||
|
|
"always",
|
||
|
|
["feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore", "revert"]
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|