From deb4494fc0dc9b1805bb0663f5499702c623835c Mon Sep 17 00:00:00 2001 From: Davidson Gomes Date: Wed, 17 Sep 2025 16:52:03 -0300 Subject: [PATCH] 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. --- commitlint.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commitlint.config.js b/commitlint.config.js index f234108b..9beb860b 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -27,8 +27,8 @@ module.exports = { 'subject-full-stop': [2, 'never', '.'], 'header-max-length': [2, 'always', 100], 'body-leading-blank': [1, 'always'], - 'body-max-line-length': [2, 'always', 120], + 'body-max-line-length': [0, 'always', 150], 'footer-leading-blank': [1, 'always'], - 'footer-max-line-length': [2, 'always', 120], + 'footer-max-line-length': [0, 'always', 150], }, };