logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Perl::Critic::Policy::Community::StrictWarnings - Always use strict and warnings, or a module that

Affiliation

       This policy is part of Perl::Critic::Community.

Author

       Dan Book, "dbook@cpan.org"

Configuration

       This policy can be configured to recognize additional modules as importers of strict and warnings, by
       putting an entry in a ".perlcriticrc" file like this:

         [Community::StrictWarnings]
         extra_importers = MyApp::Class MyApp::Role

Description

       The strict and warnings pragmas help avoid many common pitfalls such as misspellings, scoping issues, and
       performing operations on undefined values.  Warnings can also alert you to deprecated or experimental
       functionality. The pragmas may either be explicitly imported with "use", or indirectly through a number
       of importer modules such as Moose or strictures. strict is also enabled automatically with a "use"
       declaration of perl version 5.12 or higher, as is warnings with a "use" declaration of 5.36 or higher.

         use strict;
         use warnings;

         use Moose;

         use 5.012;
         use warnings;

         use 5.036;

       This policy is similar to the core policies Perl::Critic::Policy::TestingAndDebugging::RequireUseStrict
       and Perl::Critic::Policy::TestingAndDebugging::RequireUseWarnings, but combines them into one policy in
       the "community" theme. The default modules recognized as importing strict and warnings are defined by the
       same constants as the core policies, "@STRICT_EQUIVALENT_MODULES" in Perl::Critic::Utils::Constants.  To
       define additional modules, see "CONFIGURATION".

Name

       Perl::Critic::Policy::Community::StrictWarnings - Always use strict and warnings, or a module that
       imports these

See Also

       Perl::Critic

perl v5.40.1                                       2025-03-22              Perl::Critic::...:StrictWarnings(3pm)
return

See Also