Skip to content

Commit 6a5db1d

Browse files
authored
chore: disable body-max-line-length (#573)
Disable the rule that enforces max commit body line length, since i don't think we need it and it is one that always fails for me.
1 parent 372b3d5 commit 6a5db1d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

commitlint.config.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ export default {
44
rules: {
55
// Disable the rule that enforces lowercase in subject
66
"subject-case": [0], // 0 = disable, 1 = warn, 2 = error
7+
// Disable the rule that enforces a maximum line length in the body
8+
"body-max-line-length": [0, "always"]
79
},
810

911
};

0 commit comments

Comments
 (0)