util/lint/checkpatch.pl: Update 'commit message line length limit'
Also add "coreboot" comment on our modification. Change-Id: Ida58a92457e25bac7fb89bb5882e7647f388ec01 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61468 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
919b0c7d4d
commit
ac69049030
|
@ -2655,15 +2655,16 @@ sub process {
|
||||||
$commit_log_possible_stack_dump = 1;
|
$commit_log_possible_stack_dump = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# coreboot: The line lengeth limit is 72
|
||||||
# Check for line lengths > 72 in commit log, warn once
|
# Check for line lengths > 72 in commit log, warn once
|
||||||
if ($in_commit_log && !$commit_log_long_line &&
|
if ($in_commit_log && !$commit_log_long_line &&
|
||||||
length($line) > 72 &&
|
length($line) > 72 &&
|
||||||
!($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
|
!($line =~ /^\s*[a-zA-Z0-9_\/\.]+\s+\|\s+\d+/ ||
|
||||||
# file delta changes
|
# file delta changes
|
||||||
$line =~ /^\s*(?:[\w\.\-]+\/)++[\w\.\-]+:/ ||
|
$line =~ /^\s*(?:[\w\.\-\+]*\/)++[\w\.\-\+]+:/ ||
|
||||||
# filename then :
|
# filename then :
|
||||||
$line =~ /^\s*(?:Fixes:|Link:)/i ||
|
$line =~ /^\s*(?:Fixes:|Link:|$signature_tags)/i ||
|
||||||
# A Fixes: or Link: line
|
# A Fixes: or Link: line or signature tag line
|
||||||
$commit_log_possible_stack_dump)) {
|
$commit_log_possible_stack_dump)) {
|
||||||
WARN("COMMIT_LOG_LONG_LINE",
|
WARN("COMMIT_LOG_LONG_LINE",
|
||||||
"Possible unwrapped commit description (prefer a maximum 72 chars per line)\n" . $herecurr);
|
"Possible unwrapped commit description (prefer a maximum 72 chars per line)\n" . $herecurr);
|
||||||
|
|
Loading…
Reference in New Issue