1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
package Perl::Critic::Policy::Community::ArrayAssignAref;
use strict;
use warnings;
use Perl::Critic::Utils qw(:severities :classification :ppi);
use parent 'Perl::Critic::Policy::Plicease::ProhibitArrayAssignAref';
our $VERSION = 'v1.0.4';
sub default_severity { $SEVERITY_MEDIUM }
sub default_themes { 'community' }
1;
=head1 NAME
Perl::Critic::Policy::Community::ArrayAssignAref - Don't assign an anonymous
arrayref to an array
=head1 DESCRIPTION
A common mistake is to assign values to an array but use arrayref brackets
C<[]> rather than parentheses C<()>. This results in the array containing one
element, an arrayref, which is usually unintended. If intended, the arrayref
brackets can be wrapped in parentheses for clarity.
@array = []; # not ok
@array = [1, 2, 3]; # not ok
@array = ([1, 2, 3]); # ok
This policy is a subclass of L<Perl::Critic::Policy::Plicease::ProhibitArrayAssignAref>,
which is a fork of the L<Perl::Critic::Pulp> policy
L<Perl::Critic::Policy::ValuesAndExpressions::ProhibitArrayAssignAref>, and
performs the same function but in the C<community> theme.
=head1 AFFILIATION
This policy is part of L<Perl::Critic::Community>.
=head1 CONFIGURATION
This policy is not configurable except for the standard options.
=head1 AUTHOR
Dan Book, C<dbook@cpan.org>
=head1 COPYRIGHT AND LICENSE
Copyright 2015, Dan Book.
This library is free software; you may redistribute it and/or modify it under
the terms of the Artistic License version 2.0.
=head1 SEE ALSO
L<Perl::Critic>, L<Perl::Critic::Pulp>
|