Subject: | RequirePodSections still runs after global ## no critic |
Even though I have ## no critic at the top of my pm file, it still
gripes about RequirePodSections. I have a custom RequirePodSections
section in my rc file.
--test output---
# Perl::Critic found these violations in "blib\lib\Handel\L10N\en_us.pm":
# Missing "SYNOPSIS" section in POD at line 1, column 1:
Documentation::RequirePodSections Severity 2
# # $Id: en_us.pm 1335 2006-07-15 02:43:12Z claco $
# Missing "DESCRIPTION" section in POD at line 1, column 1:
Documentation::RequirePodSections Severity 2
# # $Id: en_us.pm 1335 2006-07-15 02:43:12Z claco $
Show quoted text
---rc file---
[Documentation::RequirePodSections]
lib_sections = NAME | SYNOPSIS | DESCRIPTION | AUTHOR
---module---
# $Id: en_us.pm 1335 2006-07-15 02:43:12Z claco $
## no critic
package Handel::L10N::en_us;
use strict;
use warnings;
use utf8;
use vars qw/%Lexicon/;
BEGIN {
use base qw/Handel::L10N/;
};
%Lexicon = (
Language => 'English',
);
1;
__END__
=head1 NAME
Handel::L10N::en_us - Handel Language Pack: US English
=head1 AUTHOR
Christopher H. Laco
CPAN ID: CLACO
claco@chrislaco.com
http://today.icantfocus.com/blog/