chore(config): update commit lint

This commit is contained in:
Mauricio Siu
2024-07-20 00:31:45 -06:00
parent 44ee326057
commit 9934dac203

View File

@@ -174,6 +174,34 @@
]
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
"extends": ["@commitlint/config-conventional"],
"rules": {
"type-enum": [
2,
"always",
[
"feat",
"fix",
"docs",
"style",
"refactor",
"test",
"chore",
"perf",
"ci",
"build",
"revert"
]
],
"type-case": [0],
"type-empty": [0],
"scope-case": [0],
"subject-case": [0],
"subject-empty": [0],
"subject-full-stop": [0],
"header-max-length": [0],
"body-leading-blank": [1, "always"],
"footer-leading-blank": [1, "always"]
}
}
}