Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .perlcriticrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,19 @@ private_name_regex = _(?!_)\w+
[Subroutines::ProtectPrivateSubs]
private_name_regex = _(?!_)\w+

[TooMuchCode::ProhibitDuplicateLiteral]
allowlist = 'MSWin32'
#pgp this is one of the stupid things in perlcritic :-)
#[TooMuchCode::ProhibitDuplicateLiteral]
#allowlist = 'MSWin32'
[-TooMuchCode::ProhibitDuplicateLiteral]
#pgp another stupid one
[-ValuesAndExpressions::ProhibitEmptyQuotes]
#pgp would make sense if perlcritic has been used from start :-)
[-RegularExpressions::ProhibitEscapedMetacharacters]

[-ValuesAndExpressions::ProhibitConstantPragma]

[-ValuesAndExpressions::ProhibitVersionStrings]

[Variables::ProhibitPackageVars]
add_packages = Rex::Logger

1 change: 1 addition & 0 deletions lib/Rex.pm
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ package Rex;

use v5.14.4;
use warnings;
use strict;

our $VERSION = '9999.99.99_99'; # VERSION

Expand Down
Loading
Loading