From 1ad68e8df1e631bae5d1a028c7230fa5847b591b Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Thu, 14 May 2026 11:50:11 +0200 Subject: [PATCH] misc: gitlint: allow Closes and Link trailers Both of these might be used with long URLs. Signed-off-by: Alyssa Ross --- scripts/gitlint/rules/BodyMaxLineLengthEx.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/gitlint/rules/BodyMaxLineLengthEx.py b/scripts/gitlint/rules/BodyMaxLineLengthEx.py index 60b555d83..4a147e7ed 100644 --- a/scripts/gitlint/rules/BodyMaxLineLengthEx.py +++ b/scripts/gitlint/rules/BodyMaxLineLengthEx.py @@ -9,6 +9,7 @@ IGNORE_PREFIXES = [ # Please sort alphabetically " ", "Acked-by: ", + "Closes: ", "Co-authored-by: ", "Co-developed-by: ", "Debugged-by: ", @@ -18,6 +19,7 @@ IGNORE_PREFIXES = [ "Fixes: ", "Helped-by: ", "Inspired-by: ", + "Link: ", "On-behalf-of: ", "Originally-by: ", "Reported-by: ",