Skip to content

Commit c495445

Browse files
committed
chore: disable the commit message body line length limit
This only breaks pasting URLs or long package names.
1 parent be4072d commit c495445

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

commitlint.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ module.exports = {
2727
"vue-model-api",
2828
],
2929
],
30-
"subject-case": [0, 'never']
30+
"subject-case": [0, 'never'],
31+
// No need to restrict the body line length. That only gives issues with URLs etc.
32+
"body-max-line-length": [0, 'always']
3133
},
3234
};

0 commit comments

Comments
 (0)