find-use.pl - Fehlergebnisse per Regex rausfiltern
authorG. Richardson <information@kivitendo-premium.de>
Wed, 19 Apr 2017 12:38:42 +0000 (14:38 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Wed, 19 Apr 2017 12:44:27 +0000 (14:44 +0200)
scripts/find-use.pl

index 320a369..351ed86 100755 (executable)
@@ -81,6 +81,7 @@ find(sub {
     next if /SL::/;
     next if /Support::Files/; # our own test support module
     next if /use (warnings|strict|vars|lib|constant|utf8)/;
+    next if /^use (with|the)/;
 
     my ($useline) = m/^use\s+(.*?)$/;