Tagged Questions
Perl::Tidy parses and beautifies Perl source code.
14
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
251 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
429 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
111 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
525 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
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
118 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
95 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
3answers
416 views
An alternative to php tidy?
I use php tidy to process html input in my database,
$fragment = tidy_repair_string($dom->saveHTML(), array('output-xhtml'=>1,'show-body-only'=>1));
I have this php_tidy turned on in my ...
1
vote
2answers
84 views
tiding subversion Perl repo with PerlTidy?
I would like to clean up an existing subversion repository containing badly formatted Perl code.
Since I am not sure if some comparisons with fairly old code will be necessary, ideally I would like ...
1
vote
1answer
97 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
3answers
316 views
Which is the closest Python equivalent to Perl::Tidy?
Coming from Perl I've been used to hitting C-c t to reformat my code according to pre-defined Perl::Tidy rules. Now, with Python I'm astonished to learn that there is nothing that even remotely ...
1
vote
1answer
318 views
How can I set the encoding of shell-command-on-region output?
I have a small elisp script which applies Perl::Tidy on region or whole file. For reference, here's the script (borrowed from EmacsWiki):
(defun perltidy-command(start end)
"The perltidy command we ...
1
vote
2answers
282 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
186 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 ...