]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
perl/perlcriticrc: Don't require checking print's return value.
authorSimon Ruderich <simon@ruderich.org>
Thu, 20 Dec 2012 21:09:46 +0000 (22:09 +0100)
committerSimon Ruderich <simon@ruderich.org>
Thu, 20 Dec 2012 21:09:46 +0000 (22:09 +0100)
perl/perlcriticrc

index 70c720b1406607db191daa3ee515d10e7458bf3d..ce49d500fa9b3121a27146556850cc45f6f0f9ce 100644 (file)
@@ -44,6 +44,13 @@ color = 1
 # IMHO "print $FH ..." is readable enough, "print {$FH} ..." is not necessary.
 [-InputOutput::RequireBracedFileHandleWithPrint]
 
+# Don't require checks for print's return value. I check the return value of
+# other functions like open() or close(), but checking every print is just a
+# waste of time.
+[InputOutput::RequireCheckedSyscalls]
+functions = :builtins
+exclude_functions = print
+
 # IMHO punctuation variables are more readable than their English counterparts
 # (and faster in some cases). So allow the ones I use often.
 [Variables::ProhibitPunctuationVars]