NAME
Perl::Critic::Policy::Documentation::RequireFinalCut - end POD with =cut directive
DESCRIPTION
This policy is part of the Perl::Critic::Pulp
addon. It asks you to end POD with a =cut
directive at the end of a file.
=head1 DOCO
Some text.
=cut # ok
The idea is to have a definite end of file indication. This is just for human use since Perl and the POD processors don't require a final =cut
. On that basis this policy is lowest priority and under the "cosmetic" theme (see "POLICY THEMES" in Perl::Critic).
If there's no POD in the file then a =cut
is not required. After a final =cut
there can be further code or data. A =cut
is mandatory in this case of course.
=head2 About foo
=cut
sub foo { # ok
}
If you don't care about a final =cut
you can disable RequireFinalCut
from your .perlcriticrc in the usual way (see "CONFIGURATION" in Perl::Critic),
[-Documentation::RequireFinalCut]
SEE ALSO
Perl::Critic::Pulp, Perl::Critic
Perl::Critic::Policy::Documentation::RequireEndBeforeLastPod, Perl::Critic::Policy::Documentation::RequirePodAtEnd
HOME PAGE
http://user42.tuxfamily.org/perl-critic-pulp/index.html
COPYRIGHT
Copyright 2012 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/>.