beginning to use the perl critic to clean up certian things in ikiwiki
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Wed, 15 Aug 2007 02:17:22 +0000 (02:17 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Wed, 15 Aug 2007 02:17:22 +0000 (02:17 +0000)
.perlcriticrc [new file with mode: 0644]

diff --git a/.perlcriticrc b/.perlcriticrc
new file mode 100644 (file)
index 0000000..2c784e8
--- /dev/null
@@ -0,0 +1,14 @@
+theme = core + pbp + cosmetic + bugs + maintenance + complexity + security
+
+# While there's good reason to not use subroutine prototypes, ikiwiki does
+# use them, and changing away from them could lead to subtle bugs in stuff
+# using the library. So for now, demote errors about them.
+[Subroutines::ProhibitSubroutinePrototypes]
+severity = 3
+
+# ProhibitStringyEval is broken; it doesn't take into account that
+# eval q{use Foo};
+# defers the use until the eval runs.
+# eval {use Foo}
+# does not defer the use at all.
+[-BuiltinFunctions::ProhibitStringyEval]