Perl::Critic: Life after Moose? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T00:47:41Zhttp://stackoverflow.com/feeds/question/92465http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/92465/perlcritic-life-after-moose6Perl::Critic: Life after Moose?claco2008-09-18T13:21:12Z2009-09-06T03:45:33Z
<p>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 each other as much as they used to.</p>
<p>Are there docs anywhere on how to make critic/tidy be more appreciative if the Moose dialect? What do most Moose users do? Relax/ditch critic for the more heavy Moose modules? Custom policies?</p>
http://stackoverflow.com/questions/92465/perlcritic-life-after-moose/92563#925636Answer by Leon Timmermans for Perl::Critic: Life after Moose?Leon Timmermans2008-09-18T13:34:50Z2008-09-18T13:50:40Z<p>Both of them can be configured into detail.</p>
<p>I have no idea why perltidy wouldn't like it, <strong>it has nothing to do with it</strong>. 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.</p>
<p>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.</p>
http://stackoverflow.com/questions/92465/perlcritic-life-after-moose/92673#926731Answer by Penfold for Perl::Critic: Life after Moose?Penfold2008-09-18T13:47:11Z2008-09-18T13:47:11Z<p>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.</p>
http://stackoverflow.com/questions/92465/perlcritic-life-after-moose/99295#992952Answer by Chris Dolan for Perl::Critic: Life after Moose?Chris Dolan2008-09-19T03:29:18Z2008-09-19T03:29:18Z<p>Can you provide some examples of the problems you're having with Perl::Critic? I don't think any of the core P::C team are using Moose right now, so maybe we missed something obvious...</p>
http://stackoverflow.com/questions/92465/perlcritic-life-after-moose/101658#1016583Answer by jplindstrom for Perl::Critic: Life after Moose?jplindstrom2008-09-19T13:02:29Z2008-09-19T13:02:29Z<p>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.</p>
<p>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:</p>
<pre><code>my $apple = Apple->new({
color => "red",
type => "delicious",
});
</code></pre>
<p>Tidy will insist that ( and { are two opening levels of indentation,
and it will just look this silly:</p>
<pre><code>my $apple = Apple->new({
color => "red",
type => "delicious",
});
</code></pre>
<p>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.</p>
<p>What exactly are your symptoms?</p>
<p>/J</p>
http://stackoverflow.com/questions/92465/perlcritic-life-after-moose/895348#8953484Answer by brian d foy for Perl::Critic: Life after Moose?brian d foy2009-05-21T21:45:02Z2009-05-21T21:45:02Z<p>Have you seen <a href="http://search.cpan.org/dist/Perl-Critic-Moose" rel="nofollow">Perl::Critic::Moose</a>?</p>