We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc6a61d commit 50a64f5Copy full SHA for 50a64f5
1 file changed
t/lint.t
@@ -10,8 +10,7 @@ my $MAX_IMAGE_SIZE = 300_000;
10
my @files = @ARGV ? @ARGV : File::Find::Rule->file->name('*.html')->in('.');
11
12
foreach my $file (@files) {
13
- next if $file =~ /^include/; # XXX bug
14
- next if $file =~ /^cover/; # skip coverage reports
+ next if $file =~ /^(?:include|cover|nytprof)/;
15
try {
16
my @errors = html_is_bad($file);
17
0 commit comments