mirror of
https://github.com/curl/curl.git
synced 2026-05-30 11:27:29 +03:00
spacecheck: show line numbers of duplicate empty lines
Also: - drop separate check for 3 or more consecutive empty lines. Ref: https://github.com/curl/curl/pull/20266#issuecomment-3738955165 Closes #20269
This commit is contained in:
parent
27a1e629b5
commit
e52e6dac8e
1 changed files with 16 additions and 6 deletions
|
|
@ -147,15 +147,25 @@ while(my $filename = <$git_ls_files>) {
|
|||
push @err, "content: has multiple EOL at EOF";
|
||||
}
|
||||
|
||||
if($content =~ /\n\n\n\n/ ||
|
||||
$content =~ /\r\n\r\n\r\n\r\n/) {
|
||||
push @err, "content: has 3 or more consecutive empty lines";
|
||||
}
|
||||
|
||||
if(!fn_match($filename, @double_empty_lines)) {
|
||||
if($content =~ /\n\n\n/ ||
|
||||
$content =~ /\r\n\r\n\r\n/) {
|
||||
push @err, "content: has 2 consecutive empty lines";
|
||||
my $line = 0;
|
||||
my $blank = 0;
|
||||
for my $l (split(/\n/, $content)) {
|
||||
chomp $l;
|
||||
$line++;
|
||||
if($l =~ /^$/) {
|
||||
if($blank) {
|
||||
my $lineno = sprintf("duplicate empty line @ line %d", $line);
|
||||
push @err, $lineno;
|
||||
}
|
||||
$blank = 1;
|
||||
}
|
||||
else {
|
||||
$blank = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue