1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
##############################################################################
# $URL: http://perlcritic.tigris.org/svn/perlcritic/tags/Test-Perl-Critic-Progressive-0.03/xt/author/perlcriticrc $
# $Date: 2008-07-27 16:01:56 -0700 (Sun, 27 Jul 2008) $
# $Author: thaljef $
# $Revision: 2620 $
##############################################################################
profile-strictness = quiet
severity = 1
theme = core
verbose = %f: %m at line %l, column %c. %e. (Severity: %s, %p)\n
#-----------------------------------------------------------------------------
[-CodeLayout::RequireTidyCode]
[Documentation::RequirePodSections]
lib_sections = NAME|DESCRIPTION|AUTHOR|COPYRIGHT
script_sections = NAME|DESCRIPTION|AUTHOR|COPYRIGHT
[Miscellanea::RequireRcsKeywords]
keywords = URL Date Author Revision
[CodeLayout::ProhibitHardTabs]
allow_leading_tabs = 0
[Documentation::PodSpelling]
stop_words = CPAN CVS Thalhammer
[InputOutput::RequireCheckedSyscalls]
functions = open close
[RegularExpressions::ProhibitUnusualDelimiters]
allow_all_brackets = 1
[RegularExpressions::RequireBracesForMultiline]
allow_all_brackets = 1
|