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
3answers
262 views

How can I make perltidy work with Method::Signatures?

I'm using Eclipse combined with EPIC to write my Perl code. I configured EPIC to use Perltidy with "-pbp" (perl best practices style) to format my code. This doesn't work well when using ...
7
votes
4answers
447 views

How can I automatically tidy up Perl source code?

A cat at my company walked over a keyboard and has left a valid 1000+ line of executable Perl code for me to maintain. Thanks to Perl's TMTOWTDI philosophy I find myself searching Google to make ...
4
votes
1answer
116 views

How can I prevent PerlTidy from aligning assignments but keep adding single spaces?

How can I prevent PerlTidy from aligning assignments but keep adding single spaces? This question is similar to How can I prevent PerlTidy from aligning my assignments? but I would like single spaces ...
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
93 views

Convincing Perltidy to leave whitespace alone

I am using Perltidy to reformat a few of my old Perl files to a style that is closer to my current preferences. I encountered an issue with this snippet: Fcntl::S_IRUSR & $mode Perltidy insists ...
3
votes
1answer
121 views

How can I prevent PerlTidy from aligning my assignments?

By default, PerlTidy will line up assignments in my code. E.g. PerlTidy changes this... my $red = 1; my $green = 2; my $yellow = 3; my $cyan = 4; ...into this... my $red = 1; my $green = 2; ...
1
vote
0answers
101 views

Perltidy Unalign assignment operators (= and =>)

I have code that was previous formatted by perltidy. It has assignment operators aligned. How can I get perltidy to unalign the assignment operators. I've been all over the manual, trying and ...
1
vote
1answer
99 views

PPI - prune PPI::Token::Whitespace - question

When I use "$module->prune( 'PPI::Token::Whitespace' );" and save the results in $file is there an ease way back to working code for the saved code? I tried "Perl::Tidy" and it looks much better after ...
1
vote
2answers
286 views

Can I use perltidy's HTML formatter in my automated Perl build?

I'm using Module::Build to perform build, test, testpod, html, & install actions on my Perl module that I'm developing. The HTML files that are generated are okay, but I'd be much happier if I ...
0
votes
2answers
192 views

How can perltidy align the opening parenthesis for method arguments?

is there a possibility to make perltidy vertically align brackets like this: $foo->bar (1); $foo->bat (2); $foo->bac ...