mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 21:36:21 +00:00
This will make it easier for us to write Changelogs for example. See https://www.conventionalcommits.org/en/v1.0.0. Also mentioned in the CONTRIBUTING.md Signed-off-by: Michael Vetter <jubalh@iodoru.org>
24 lines
345 B
JSON
24 lines
345 B
JSON
{
|
|
"extends": ["@commitlint/config-conventional"],
|
|
"rules": {
|
|
"type-enum": [
|
|
2,
|
|
"always",
|
|
[
|
|
"feat",
|
|
"fix",
|
|
"docs",
|
|
"style",
|
|
"refactor",
|
|
"perf",
|
|
"tests",
|
|
"build",
|
|
"ci",
|
|
"chore",
|
|
"cleanup"
|
|
]
|
|
],
|
|
"subject-case": [0]
|
|
}
|
|
}
|