Subject: | Empty strings in ProhibitQuotedWordLists |
Hi,
I just enabled the CodeLayout::ProhibitQuotedWordLists policy.
The only thing it reported was:
my @line = ( '', '', '' );
Changing it to the recommened.
my @line = ( q{}, q{}, q{} );
didn't help.
So I ended up with:
my @line = ( q{}, q{}, q{} ); ## no critic
So I put a wish for an explict check for empty strings on the wishlist.