Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
perl5
/
Perl
/
Critic
Upload
5 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
Policy
-
drwxr-xr-x
2022-02-23 11:30:57
Del
Pulp
-
drwxr-xr-x
2022-02-23 11:30:58
Del
Pulp.pm
10.7 KB
-rw-r--r--
2021-02-27 06:40:40
Edit
Del
Editing: Pulp.pm
(10.7 KB)
Path: /usr/share/perl5/Perl/Critic/Pulp.pm
Back
# Copyright 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2021 Kevin Ryde # This file is part of Perl-Critic-Pulp. # Perl-Critic-Pulp is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 3, or (at your option) any later # version. # # Perl-Critic-Pulp is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # # You should have received a copy of the GNU General Public License along # with Perl-Critic-Pulp. If not, see <http://www.gnu.org/licenses/>. package Perl::Critic::Pulp; use 5.006; use strict; use warnings; our $VERSION = 99; 1; __END__ =for stopwords perlcritic builtin multi-constants Gtk2 Gtk2Constants perlcritic's Ryde barewords un-typical parens de gustibus disputandum backslashing initializers globals add-ons =head1 NAME Perl::Critic::Pulp - some add-on perlcritic policies =head1 DESCRIPTION This is a collection of add-on policies for C<Perl::Critic>. They're under a "pulp" theme plus other themes according to their purpose (see L<Perl::Critic/POLICY THEMES>). =for my_pod policy_list begin =head2 Bugs =over =item L<CodeLayout::ProhibitFatCommaNewline|Perl::Critic::Policy::CodeLayout::ProhibitFatCommaNewline> Avoid newline before C<=E<gt>> not quoting. =item L<CodeLayout::ProhibitIfIfSameLine|Perl::Critic::Policy::CodeLayout::ProhibitIfIfSameLine> Avoid C<} if () {> perhaps meant to be C<elsif>. =item L<Miscellanea::TextDomainPlaceholders|Perl::Critic::Policy::Miscellanea::TextDomainPlaceholders> Check keyword arguments to C<__x()>, C<__nx()>, etc. =item L<Modules::ProhibitUseQuotedVersion|Perl::Critic::Policy::Modules::ProhibitUseQuotedVersion> Don't quote a version requirement like C<use Foo '1.5'> =item L<ValuesAndExpressions::RequireNumericVersion|Perl::Critic::Policy::ValuesAndExpressions::RequireNumericVersion> C<$VERSION> plain number for comparisons and checking. =item L<ValuesAndExpressions::ConstantBeforeLt|Perl::Critic::Policy::ValuesAndExpressions::ConstantBeforeLt> Avoid problems with C<< FOO < 123 >> =item L<ValuesAndExpressions::NotWithCompare|Perl::Critic::Policy::ValuesAndExpressions::NotWithCompare> Avoid problems with C<! $x == $y> =item L<ValuesAndExpressions::ProhibitArrayAssignAref|Perl::Critic::Policy::ValuesAndExpressions::ProhibitArrayAssignAref> Dubious C<@array=[1,2,3]> array/arrayref assignments. =item L<ValuesAndExpressions::ProhibitDuplicateHashKeys|Perl::Critic::Policy::ValuesAndExpressions::ProhibitDuplicateHashKeys> Duplicate literal keys C<%h = (xyz=E<gt>123, xyz=E<gt>456)>. =item L<ValuesAndExpressions::ProhibitFiletest_f|Perl::Critic::Policy::ValuesAndExpressions::ProhibitFiletest_f> Don't use C<-f>. =item L<ValuesAndExpressions::UnexpandedSpecialLiteral|Perl::Critic::Policy::ValuesAndExpressions::UnexpandedSpecialLiteral> C<__PACKAGE__> etc special words not expanding. =back =head2 Compatibility =over =item L<Compatibility::ConstantPragmaHash|Perl::Critic::Policy::Compatibility::ConstantPragmaHash> Version requirement for hash style multi-constants. =item L<Compatibility::ConstantLeadingUnderscore|Perl::Critic::Policy::Compatibility::ConstantLeadingUnderscore> Version requirement for constants with leading underscore. =item L<Compatibility::Gtk2Constants|Perl::Critic::Policy::Compatibility::Gtk2Constants> Gtk2 module version requirement for some constants. =item L<Compatibility::PerlMinimumVersionAndWhy|Perl::Critic::Policy::Compatibility::PerlMinimumVersionAndWhy> Perl version declared against features used. =item L<Compatibility::PodMinimumVersion|Perl::Critic::Policy::Compatibility::PodMinimumVersion> Perl version declared against POD features used. =item L<Compatibility::ProhibitUnixDevNull|Perl::Critic::Policy::Compatibility::ProhibitUnixDevNull> Prefer C<< File::Spec->devnull >> over F</dev/null>. =back =head2 Efficiency =over =item L<Documentation::RequireEndBeforeLastPod|Perl::Critic::Policy::Documentation::RequireEndBeforeLastPod> Put C<__END__> before POD at end of file. =item L<Miscellanea::TextDomainUnused|Perl::Critic::Policy::Miscellanea::TextDomainUnused> C<Locale::TextDomain> imported but not used. =item L<Modules::ProhibitPOSIXimport|Perl::Critic::Policy::Modules::ProhibitPOSIXimport> Don't import the whole of C<POSIX>. =back =head2 Cosmetic =over =item L<CodeLayout::RequireTrailingCommaAtNewline|Perl::Critic::Policy::CodeLayout::RequireTrailingCommaAtNewline> Comma "," at the end of list, if at a newline. =item L<CodeLayout::RequireFinalSemicolon|Perl::Critic::Policy::CodeLayout::RequireFinalSemicolon> Semicolon C<;> on the last statement of a subroutine or block. =item L<ValuesAndExpressions::ProhibitEmptyCommas|Perl::Critic::Policy::ValuesAndExpressions::ProhibitEmptyCommas> Stray consecutive commas C<,,> =item L<ValuesAndExpressions::ProhibitNullStatements|Perl::Critic::Policy::ValuesAndExpressions::ProhibitNullStatements> Stray semicolons C<;> =item L<ValuesAndExpressions::ProhibitUnknownBackslash|Perl::Critic::Policy::ValuesAndExpressions::ProhibitUnknownBackslash> Unknown C<\z> etc escapes in strings. =item L<ValuesAndExpressions::ProhibitBarewordDoubleColon|Perl::Critic::Policy::ValuesAndExpressions::ProhibitBarewordDoubleColon> Double-colon barewords C<Foo::Bar::> =item L<Modules::ProhibitModuleShebang|Perl::Critic::Policy::Modules::ProhibitModuleShebang> No C<#!> interpreter line in F<.pm> files. =back =head2 Documentation =over =item L<Documentation::ProhibitUnbalancedParens|Perl::Critic::Policy::Documentation::ProhibitUnbalancedParens> Unbalanced or mismatched ( ) parens, brackets and braces. =item L<Documentation::ProhibitAdjacentLinks|Perl::Critic::Policy::Documentation::ProhibitAdjacentLinks> Put commas or some text between adjacent C<< LE<lt>E<gt> >> links. =item L<Documentation::ProhibitDuplicateHeadings|Perl::Critic::Policy::Documentation::ProhibitDuplicateHeadings> Don't duplicate C<=head> headings. =item L<Documentation::ProhibitDuplicateSeeAlso|Perl::Critic::Policy::Documentation::ProhibitDuplicateSeeAlso> Don't duplicate C<< LE<lt>E<gt> >> links in SEE ALSO sections. =item L<Documentation::ProhibitBadAproposMarkup|Perl::Critic::Policy::Documentation::ProhibitBadAproposMarkup> Avoid C<< CE<lt>E<gt> >> in NAME section, bad for man's "apropos" output. =item L<Documentation::RequireFilenameMarkup|Perl::Critic::Policy::Documentation::RequireFilenameMarkup> Markup /foo filenames. =item L<Documentation::ProhibitLinkToSelf|Perl::Critic::Policy::Documentation::ProhibitLinkToSelf> Don't C<< LE<lt>E<gt> >> link to the document itself. =item L<Documentation::ProhibitParagraphEndComma|Perl::Critic::Policy::Documentation::ProhibitParagraphEndComma> Don't end paragraph with "," comma. =item L<Documentation::ProhibitParagraphTwoDots|Perl::Critic::Policy::Documentation::ProhibitParagraphTwoDots> Don't end paragraph with ".." (stray extra dot). =item L<Documentation::ProhibitVerbatimMarkup|Perl::Critic::Policy::Documentation::ProhibitVerbatimMarkup> Verbatim paragraphs not expanding C<< CE<lt>E<gt> >> etc markup. =item L<Documentation::RequireFinalCut|Perl::Critic::Policy::Documentation::RequireFinalCut> Have a C<=cut> at end of file. =item L<Documentation::RequireLinkedURLs|Perl::Critic::Policy::Documentation::RequireLinkedURLs> Use C<< LE<lt>E<gt> >> markup on URLs. =back =for my_pod policy_list end =head2 Selecting You can always enable or disable the policies you do or don't want (see L<Perl::Critic/CONFIGURATION>). You may have already realized that there's a wide range of builtin and add-on perlcritic policies ranging from buggy practice to deliberately restrictive or even quite bizarre. You're not meant to pass everything. Some policies may even be mutually contradictory. The restrictive policies are meant as building blocks for a house style. For example C<ProhibitBarewordDoubleColon> here, or something like C<ProhibitUnlessBlocks>. They're usually a matter of personal preference, and "non de gustibus disputandum" as they say in the classics. Trying to follow all such policies would give away big parts of the language and quite likely result in very un-typical code. Some of the restrictive policies are geared towards beginners. C<ProhibitUnknownBackslash> here or C<RequireInitializationForLocalVars> are along those lines. There might for instance be good backslashing which the prohibition doesn't recognise, or local variable initializers make no sense for output variables like C<$!>, once you get to the level of knowing to use C<local> to preserve such globals. In general the POD of each policy is supposed to explain the motivation so you can see whether you want it or not. If you're not turning off or drastically customizing at least half of all policies then you're either not trying or you're much too easily lead! =head1 OTHER NOTES In most of the perlcritic documentation, including the Pulp add-ons here, policy names appear without the full C<Perl::Critic::Policy::...> class part. In Emacs try C<man-completion.el> to make C<M-x man> automatically expand a suffix part at point, or C<ffap-perl-module.el> for the same to go to the source. =over =item L<http://user42.tuxfamily.org/man-completion/index.html> =item L<http://user42.tuxfamily.org/ffap-perl-module/index.html> =back In perlcritic's output you can ask for C<%P> to see the full policy package name to run C<perldoc> or copy or follow etc. Here's a good output format you can put in your F<.perlcriticrc>. The file:line:column: part is a style Emacs will recognise. verbose=%f:%l:%c:\n %P\n %m\n See L<Perl::Critic::Violation> for all available C<%> escapes. C<perlcritic.el> which comes with perlcritic has regexp patterns for Emacs to recognise the builtin perlcritic formats, but it's easier to output "file:line:column:" in the first place. =head1 SEE ALSO L<Perl::Critic> =head1 HOME PAGE L<http://user42.tuxfamily.org/perl-critic-pulp/index.html> =head1 COPYRIGHT Copyright 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2021 Kevin Ryde Perl-Critic-Pulp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. Perl-Critic-Pulp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Perl-Critic-Pulp. If not, see <http://www.gnu.org/licenses/>. =cut