mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-01-26 11:14:04 +00:00
30 lines
603 B
JSON
30 lines
603 B
JSON
{
|
|
"extends": ["@commitlint/config-conventional"],
|
|
"rules": {
|
|
"type-enum": [
|
|
2,
|
|
"always",
|
|
[
|
|
"feat",
|
|
"fix",
|
|
"docs",
|
|
"style",
|
|
"refactor",
|
|
"perf",
|
|
"test",
|
|
"chore",
|
|
"ci",
|
|
"build",
|
|
"revert"
|
|
]
|
|
],
|
|
"type-case": [2, "always", "lower-case"],
|
|
"type-empty": [2, "never"],
|
|
"subject-empty": [2, "never"],
|
|
"subject-full-stop": [2, "never", "."],
|
|
"header-max-length": [2, "always", 72],
|
|
"body-leading-blank": [1, "always"],
|
|
"footer-leading-blank": [1, "always"]
|
|
}
|
|
}
|