Tagged Questions

15
votes
4answers
2k views

Perl::Critic: Life after Moose?

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. ...
9
votes
4answers
428 views

Why does Perl::Critic dislike using shift to populate subroutine variables?

Lately, I've decided to start using Perl::Critic more often on my code. After programming in Perl for close to 7 years now, I've been settled in with most of the Perl best practices for a long while, ...
8
votes
1answer
113 views

Perl Critic: Comma used to separate statements

Follow code is not accepted by Critic, severity 4: return { 'debug' => $debug, 'identifier' => $identifier }; I get this error: # Perl::Critic found these violations in ...
7
votes
4answers
199 views

Is there anything like PPI or Perl::Critic for C?

PPI and Perl::Critic allow programmers to detect certain things in the syntax of their Perl programs. Is there anything like it that will tokenize/parse C and give you a chance to write a script to ...
6
votes
8answers
680 views

Are there any good automated frameworks for applying coding standards in Perl?

One I am aware of is Perl::Critic And my googling has resulted in no results on multiple attempts so far. :-( Does anyone have any recommendations here? Any resources to configure Perl::Critic as ...
5
votes
5answers
693 views

Is there a better way to write Perl regexes with /x so the code is still easy to read?

I ran Perl::Critic on one of my scripts, and got this message: Regular expression without "/x" flag at line 21, column 26. See page 236 of PBP. I looked up the policy information here, and I ...
4
votes
2answers
125 views

Perlcritic - Two argument “open” error

I have a script and I am trying to elimate bad practices using perlcritic. One line I have is as follows: open(my($FREESPCHK), $cmdline ) || &zdie($MSG_PASSTHRU,"Error checking free space of ...
4
votes
3answers
276 views

Is it better to croak() or to die() when something bad happens in Perl?

Perlcritic complaints that the following code, some boilerplate DBI stuff that works perfectly fine, should croak() instead of die(): #Connect to database my $db_handle = DBI->connect( $url, ...
4
votes
4answers
535 views

How can we catch side comments using Perl::Tidy or Perl::Critic?

My department is currently settling on some general code best practices, which we would like to somewhat enforce, providing developers with Perl::Tidy and Perl::Critic configurations. Now we are ...
3
votes
1answer
85 views

Cant get the policy Perl::Critic::Policy::Tics::ProhibitLongLines to work

I have: Ubuntu 10.04 Perlbrew 0.39 Switched to Perl 5.12.3. with perlbrew Installed Perl::Critic and Perl::Critic::Tics with cpanm my .perlcriticrc file : severity = 1 only= 1 ...
3
votes
2answers
92 views

How do I make Perl::Critic show the offending policy in its output?

I've been told it's possible to have Perl::Critic show the policy name that is offending in its output. But I can't recall what I have to do to turn this on. How can this be enabled in a ...
3
votes
5answers
150 views

Where is $_ being modified in this perl code?

The following perl code generates a warning in PerlCritic (by Activestate): sub natural_sort { my @sorted; @sorted = grep {s/(^|\D)0+(\d)/$1$2/g,1} sort grep {s/(\d+)/sprintf"%06.6d",$1/ge,1} ...
3
votes
2answers
181 views

How can I run Test::Perl::Critic in parallel?

I've written a simple test case based on Test::Perl::Critic which runs critic on every single source file in the repository (all_critic_ok). However, this test takes a long time, especially since I ...
3
votes
4answers
515 views

How do I enable PerlCritic support in Komodo IDE 5.1 on Windows?

I'm trying to enable PerlCritic support in Komodo. The official word from ActiveState, the makers of Komodo IDE 5.1 (Win 32) is: "To enable PerlCritic support, please install the 'Perl-Critic' and ...
2
votes
4answers
51 views

What is the correct way to exclude RequireRcsKeywords from Perl Critic?

I'm trying to exclude checks of Perl Critic's RequireRcsKeywords in a single Perl script. I don't want to change my default policy in .perlcriticrc so I added a "no critic" line to the top of the ...
2
votes
6answers
104 views

Perlcritic config - finding the names of the policies that generate an error?

I'm trying to get started using Perlcritic, and I'm working on refining my own configuration, leaving out all the rules I don't agree with or don't think are appropriate for me. I know that I can do ...
2
votes
2answers
553 views

Do I need to trap errors in my calls to Win32::OLE->LastError?

[EDIT] - with the benefit of hindsight, this question was misdirected. I have not deleted it because it is a good example of the incorrect use of eval and correct criticism by Perl::Critic. Perl ...
2
votes
8answers
247 views

How can I avoid Perl::Critic warnings when I process a multi-line string with a filehandle?

Does anyone have a solution to the task of processing a multi-line string one line at a time, other than the string-as-a-filehandle solution shown below? my $multiline_string = "line one\nline ...
1
vote
3answers
115 views

How can I sort one key ascending, another descending without using $b (comparison) $a in Perl?

In Perl, I can do: my @unit_indices = sort { $units{$b}[0] <=> $units{$a}[0] or $a cmp $b } keys %units; which sorts by one field (array element) descending and the other ...
0
votes
1answer
1k views

How do I get Perl::Critic to work with E.P.I.C and eclipse?

I'm running eclipse Galileo with EPIC 0.5.46 and ActiveState ActivePerl 5.10.0, on WinXP SP3. I just downloaded Perl::Critic using the package manager, and integrated it to eclipse using the ...