Skip to content

Commit 87f91b0

Browse files
authored
Merge pull request #355 from modelix/chore/remove-commit-line-length-limit
chore: disable the commit message body line length limit
2 parents c9b78a3 + c495445 commit 87f91b0

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)