in reply to Perl::Critic and Perl::Tidy

Have you tried turning up perlcritic's strictness level? I tend to use it with the -brutal flag for maximum error checking. However be careful it does complain about thing that may not apply to you (RCS tags for example).

Replies are listed 'Best First'.
Re^2: Perl::Critic and Perl::Tidy
by InfiniteLoop (Hermit) on May 25, 2007 at 20:00 UTC
    got it !! The issue was that I was running with severity at "gentle" and Perl::Critic would apply the Tidy check only at severity "brutal", I fixed it by using this conf:
    [CodeLayout::RequireTidyCode] perltidyrc = /svn/hooks/perltidy.conf severity = 5
Re^2: Perl::Critic and Perl::Tidy
by InfiniteLoop (Hermit) on May 25, 2007 at 19:55 UTC
    with a higher strictness, it does detect violations, but none related to code overflowing 80 col or such coding styles.