30 lines
482 B
JSON
30 lines
482 B
JSON
{
|
|
"extends": ["@commitlint/config-conventional"],
|
|
"rules": {
|
|
"type-enum": [
|
|
2,
|
|
"always",
|
|
[
|
|
"feat",
|
|
"fix",
|
|
"docs",
|
|
"style",
|
|
"refactor",
|
|
"perf",
|
|
"test",
|
|
"build",
|
|
"ci",
|
|
"chore",
|
|
"revert"
|
|
]
|
|
],
|
|
"scope-enum": [
|
|
0
|
|
],
|
|
"scope-empty": [0],
|
|
"subject-empty": [2, "never"],
|
|
"subject-case": [0],
|
|
"header-max-length": [2, "always", 100]
|
|
}
|
|
}
|