Perl::Critic::Policy::BuiltinFunctions::RequireGlobFunction - Use C instead of <*>.


Perl-Critic documentation  | view source Contained in the Perl-Critic distribution.

Index


NAME

Top

Perl::Critic::Policy::BuiltinFunctions::RequireGlobFunction - Use glob q{*} instead of <*>.

AFFILIATION

Top

This Policy is part of the core Perl::Critic distribution.

DESCRIPTION

Top

Conway discourages the use of the <.. > construct for globbing, as it is easily confused with the angle bracket file input operator. Instead, he recommends the use of the glob() function as it makes it much more obvious what you're attempting to do.

    @files = <*.pl>;              # not ok
    @files = glob '*.pl';         # ok




CONFIGURATION

Top

This Policy is not configurable except for the standard options.

AUTHOR

Top

Graham TerMarsch <graham@howlingfrog.com>

COPYRIGHT

Top


Perl-Critic documentation  | view source Contained in the Perl-Critic distribution.