From 17e93dc729548a1c60c2c56427f87e3898090934 Mon Sep 17 00:00:00 2001 From: Felipe Mamud Date: Wed, 23 Sep 2026 17:03:19 +0200 Subject: [PATCH] fix(ci): allow generated release commit footers --- commitlint.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/commitlint.config.ts b/commitlint.config.ts index f8f222f7a..2cd1118d8 100644 --- a/commitlint.config.ts +++ b/commitlint.config.ts @@ -42,6 +42,7 @@ export default { }, rules: { 'body-max-line-length': [0], + 'footer-max-line-length': [0], 'scope-empty': [2, 'never'], 'scope-enum': [2, 'always', scopes], },