Skip to content

Commit deb4494

Browse files
committed
chore(commitlint): increase body and footer line length limits to 150 characters
- Update body-max-line-length and footer-max-line-length in commitlint configuration to allow for longer lines, enhancing readability and accommodating more detailed commit messages.
1 parent 0a35708 commit deb4494

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commitlint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ module.exports = {
2727
'subject-full-stop': [2, 'never', '.'],
2828
'header-max-length': [2, 'always', 100],
2929
'body-leading-blank': [1, 'always'],
30-
'body-max-line-length': [2, 'always', 120],
30+
'body-max-line-length': [0, 'always', 150],
3131
'footer-leading-blank': [1, 'always'],
32-
'footer-max-line-length': [2, 'always', 120],
32+
'footer-max-line-length': [0, 'always', 150],
3333
},
3434
};

0 commit comments

Comments
 (0)