Perl::Critic: Life after Moose?
Asked Answered
D

4

18

I've started a conversion of a project to Moose and the first thing I noticed was that my critic/tidy tests go to hell. Moose, Tidy and Critic don't seem to like each other as much as they used to.

Are there docs anywhere on how to make critic/tidy be more appreciative of the Moose dialect? What do most Moose users do? Relax/ditch critic for the more heavy Moose modules? Custom policies?

Defilade answered 18/9, 2008 at 13:21 Comment(0)
N
15

Have you seen Perl::Critic::Moose?

Newhall answered 21/5, 2009 at 21:45 Comment(0)
S
6

Earlier versions of Perl::Critic's "use strict" policy wasn't aware of Moose enabling strict for you, but that'll be fixed if you upgrade Perl::Critic.

I use both Perl::Critic and Perl::Tidy with Moose, and I don't see anything particularly broken. Well, actually, I can't get Perl::Tidy to layout things like this properly:

my $apple = Apple->new({
    color => "red",
    type  => "delicious",
});

Tidy will insist that ( and { are two opening levels of indentation, and it will just look this silly:

my $apple = Apple->new({
        color => "red",
        type  => "delicious",
});

But we had this problem before; the coding convention in the project is to use a hashref, not a hash, for named parameters. So it's not really a Moose related problem as such.

What exactly are your symptoms?

/J

Sorehead answered 18/9, 2008 at 13:21 Comment(0)
H
6

Both of them can be configured into detail.

I have no idea why perltidy wouldn't like it, it has nothing to do with it. Perltidy only governs style. You can change the style of your code without changing any functionality, it's mostly a matter of whitespace really. You should either change your style or change the perltidy configuration using the .perltidyrc file.

I don't know what problems perlcritic has with it (lvalue methods perhaps?), but you could consider turning off those specific policies using the .perlcriticrc file. Also, if your perlcritic is old you may want to upgrade it, as some old versions gave some incorrect errors in Moose classes.

Hofmann answered 18/9, 2008 at 13:34 Comment(5)
Well, I guess more to the point. Does anyone have a criticrc/perltidyrc that is tweaked for Moose-based projects? Every time I deviate form the stock tidy rc, I feel dirty, and usually end up making things worse. :-)Defilade
Added: Perltidy only governs style. You can change the style of your code without changing any functionality, it's mostly a matter of whitespace really.Hofmann
Moose does not create lvalue methods for you. I don't even think there's a MooseX extension for this.Patterson
PerlTidy can't handle MooseX::Method::Signatures, thinks there are syntax errors everywhere and mangles indentation :(Chary
Just to elaborate on that, perltidy will turn function(:$requirednamedparam!) into function( : $requirednamedparam ! ) which is invalidLimnology
M
3

I have no problem with Critic tests - admittedly I run at severity=3, at least in part because some of what I have to work with is legacy code that I don't have /time/ to tidy, but my Moose stuff sails through that.

Metamorphosis answered 18/9, 2008 at 13:47 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.