chore(commitlint): relax body+footer max-line-length to warn-at-200#5
Merged
cloudingenium-automation[bot] merged 1 commit intoApr 27, 2026
Conversation
Default '@commitlint/config-conventional' enforces 100-char max on body and footer lines as ERROR. This repeatedly trips Dependabot grouped bumps (whose autobody includes Markdown links that exceed 100 chars) and any propagated commit message that quotes URLs or paths. New rule: warn (level 1) at 200 chars instead of error at 100. Keeps some discipline against runaway lines without blocking merges on unavoidable URL references in auto-generated bodies. Header/subject length rules unchanged.
cloudingenium-automation
Bot
deleted the
fix/commitlint-relax-body-line-length-2026-04-27
branch
April 27, 2026 04:22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Relaxes the over-strict default
body-max-line-length: [2, 'always', 100]inherited from
@commitlint/config-conventionalto a warn-at-200 rule.Why: this rule fires on every Dependabot grouped bump (autobody includes
Markdown links like
[actions/setup-node](https://github.com/actions/setup-node)that naturally exceed 100 chars), and on any propagated commit body that quotes
URLs or paths. Real-world:
bfx-api-node-rest#8(setup-node 6.3→6.4) blockedon this;
DigiConta#121(gitleaks template propagation) blocked on this.Change:
body-max-line-length: [1, 'always', 200]+ same forfooter-max-line-length.Level 1 = warn (don't block CI). 200 chars accommodates Markdown links and short
URLs while still flagging genuinely runaway lines. Header/subject length unchanged.
Auto-merge will fire once CI passes.