Skip to content

Commit 58b13a1

Browse files
author
Oleksandr Dzhychko
committed
chore: disable the commit message footer line length limit
This only breaks pasting URLs or long package names.
1 parent ab64161 commit 58b13a1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

commitlint.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ module.exports = {
2828
],
2929
],
3030
"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']
31+
// No need to restrict the body and footer line length. That only gives issues with URLs etc.
32+
"body-max-line-length": [0, 'always'],
33+
"footer-max-line-length": [0, 'always']
3334
},
3435
ignores: [
3536
(message) => message.includes('skip-lint')

0 commit comments

Comments
 (0)