Subject: | ProhibitLongLines should exempt lines after __END__ or __DATA__ |
It seems to me that ProhibitLongLines should exempt lines after __END__
or __DATA__. But it does not.
Subject: | longlinestest.pl |
use warnings;
use strict;
package zippy;
sub zippy {
print "Zippy!";
}
__END__
This here is a really long line that should mean nothing at all to Perl and indeed does nothing at all except be here taking up space, but ProhibitLongLines will have an error.