The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Perl::Critic::PetPeeves::JTRAMMELL - policies to prohibit/require my pet peeves

DESCRIPTION

Module Perl::Critic::PetPeeves::JTRAMMELL provides policies that I want that haven't already been implemented elsewhere. So far this is:

Perl::Critic::Policy::Variables::ProhibitUselessInitialization

Considers unnecessary initialization a style violation, e.g.:

    my $foo = undef;     # assignment not needed
    my @bar = ();        # ditto

AUTHOR

John Trammell <johntrammell =at= gmail !dot! com>

BUGS

Please report any bugs or feature requests to bug-perl-critic-petpeeves-jtrammell at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Perl-Critic-PetPeeves-JTRAMMELL. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Perl::Critic::PetPeeves::JTRAMMELL

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2011 John Trammell, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.