From 6e2f24f67bc250aff3108cc58ff63d1bc9ceecab Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Sun, 26 Oct 2025 17:18:22 -0700 Subject: [PATCH] chore: disable body-max-line-length Disable the rule that enforces max commit body line length, since i don't think we need it and it is one that always fails for me. --- commitlint.config.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commitlint.config.mjs b/commitlint.config.mjs index 467a3867..586f4e9f 100644 --- a/commitlint.config.mjs +++ b/commitlint.config.mjs @@ -4,6 +4,8 @@ export default { rules: { // Disable the rule that enforces lowercase in subject "subject-case": [0], // 0 = disable, 1 = warn, 2 = error + // Disable the rule that enforces a maximum line length in the body + "body-max-line-length": [0, "always"] }, };