fix(ci): disable body-max-line-length in commitlint config#84
Merged
Conversation
Squash-merge commits embed PR descriptions that can contain lines longer than 100 chars. The rule inherited from @commitlint/config-conventional caused spurious CI failures when scanning historical commits on release branches. Disabling the rule with severity 0 to fix PR 83. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
df3bd90 to
e93bdff
Compare
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.
Problème
Le check commitlint de la PR #83 (
release/cli-1.9.0-to-main→main) échoue car la CI scanne les commits depuisbase.sha(tip de main =900fe4e6) jusqu'au HEAD de la branche release — soit 53 commits historiques.Le commit
7bc498a(fix(catalog): default URL targets GitHub Pages CDN + bump 1.3.0) a un body d'une seule ligne de ~120 chars, ce qui dépasse la limitebody-max-line-length: 100héritée de@commitlint/config-conventional.Solution
Désactiver
body-max-line-lengthavec[0](severity 0 = off). Les corps de squash-merge embarquent des descriptions de PR qui peuvent légitimement dépasser 100 chars. La contrainte utile resteheader-max-length: 100sur le titre.Test
Fixes #83 (commitlint check).
🤖 Generated with Claude Code