misc: gitlint: allow more prefixes disabling 72 width limit

Suggested-by Alyssa Ross [0].

[0]: https://github.com/cloud-hypervisor/cloud-hypervisor/pull/7471#discussion_r2519894440

Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de>
On-behalf-of: SAP philipp.schuster@sap.com
This commit is contained in:
Philipp Schuster 2025-11-13 07:22:27 +01:00 committed by Rob Bradford
parent f826d92601
commit 62345cd6fd
2 changed files with 3 additions and 1 deletions

View file

@ -1,7 +1,7 @@
[general]
extra-path=scripts/gitlint/rules
regex-style-search=true
ignore=body-max-line-length
ignore=body-max-line-length,body-hard-tab
[ignore-by-author-name]
regex=dependabot

View file

@ -6,6 +6,7 @@ import re
IGNORE_PREFIXES = [
# Please sort alphabetically
" ",
"Acked-by: ",
"Co-authored-by: ",
"Co-developed-by: ",
@ -25,6 +26,7 @@ IGNORE_PREFIXES = [
"Suggested-by: ",
"Tested-by: ",
"Triggered-by: ",
"\t",
]