Skip to content

Commit

Permalink
chore(commitlint): warning on body max length
Browse files Browse the repository at this point in the history
  • Loading branch information
latipun7 committed Aug 4, 2021
1 parent fa6dfec commit 5d286d6
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,37 @@
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
],
"rules": {
"body-max-line-length": [
1,
"always",
100
],
"footer-max-line-length": [
1,
"always",
100
],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"security"
]
]
}
},
"config": {
"commitizen": {
Expand Down

0 comments on commit 5d286d6

Please sign in to comment.