Acme-Flat
view release on metacpan or search on metacpan
lib/Acme/Flat/PADOP.pm view on Meta::CPAN
=head1 NAME
Acme::Flat::PADOP - An Operation with a reference to a PAD element.
=head1 VERSION
version 0.001001
=head1 DESCRIPTION
This OP is only available in Perls compiled with ithreads.
=head1 AUTHOR
Kent Fredric <kentnl@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Kent Fredric <kentfredric@gmail.com>.
This is free software; you can redistribute it and/or modify it under
maint/perlcritic.rc.gen.pl view on Meta::CPAN
our $VERSION = 0.001;
use Carp qw( croak carp );
use Perl::Critic::ProfileCompiler::Util qw( create_bundle );
use Path::Tiny qw(path);
## no critic (ErrorHandling::RequireUseOfExceptions)
my $bundle = create_bundle('Example::Author::KENTNL');
$bundle->configure;
my @stopwords = (qw(perl reimplementation Metadata LValue ithreads Unary SV ));
for my $wordlist (@stopwords) {
$bundle->add_or_append_policy_field( 'Documentation::PodSpelling' => ( 'stop_words' => $wordlist ) );
}
#$bundle->add_or_append_policy_field(
# 'Subroutines::ProhibitCallsToUndeclaredSubs' => ( 'exempt_subs' => 'String::Formatter::str_rf' ), );
#$bundle->remove_policy('ErrorHandling::RequireUseOfExceptions');
#$bundle->remove_policy('CodeLayout::RequireUseUTF8');
#$bundle->remove_policy('ErrorHandling::RequireCarping');
perlcritic.rc view on Meta::CPAN
[-ControlStructures::ProhibitPostfixControls]
[ControlStructures::ProhibitUnlessBlocks]
[ControlStructures::ProhibitUnreachableCode]
[ControlStructures::ProhibitUntilBlocks]
[Documentation::PodSpelling]
spell_command = aspell list --lang en_US
stop_words = perl reimplementation Metadata LValue ithreads Unary SV
[Documentation::ProhibitAdjacentLinks]
[Documentation::ProhibitBadAproposMarkup]
[Documentation::ProhibitDuplicateHeadings]
[Documentation::ProhibitDuplicateSeeAlso]
[Documentation::ProhibitLinkToSelf]
( run in 0.924 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )