mirror of
https://github.com/curl/curl.git
synced 2026-06-07 18:34:16 +03:00
badwords.pl: enable warnings, fix them
This commit is contained in:
parent
20d80015d0
commit
f6ae4b7723
1 changed files with 9 additions and 1 deletions
10
.github/scripts/badwords.pl
vendored
10
.github/scripts/badwords.pl
vendored
|
|
@ -13,7 +13,15 @@
|
|||
#
|
||||
# ---(accepted word)
|
||||
#
|
||||
my $w;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
my @whitelist;
|
||||
my %alt;
|
||||
my %exactcase;
|
||||
|
||||
my @w;
|
||||
while(<STDIN>) {
|
||||
chomp;
|
||||
if($_ =~ /^#/) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue