From 0a357089b3fd270afe8fe8a97688935fee8b6470 Mon Sep 17 00:00:00 2001 From: Davidson Gomes Date: Wed, 17 Sep 2025 16:51:46 -0300 Subject: [PATCH] chore(commitlint): update line length rules for body and footer to 120 characters - Adjust body-max-line-length and footer-max-line-length in commitlint configuration to allow for longer lines, improving readability and accommodating more detailed commit messages. --- commitlint.config.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commitlint.config.js b/commitlint.config.js index 81322258..f234108b 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', 100], + 'body-max-line-length': [2, 'always', 120], 'footer-leading-blank': [1, 'always'], - 'footer-max-line-length': [2, 'always', 100], + 'footer-max-line-length': [2, 'always', 120], }, }; diff --git a/package.json b/package.json index ebca32d0..e2bb16c1 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "eslint --fix" ], "src/**/*.ts": [ - "tsc --noEmit --incremental" + "sh -c 'npm run build'" ] }, "config": {