From 643f71363fdc9075568461531d4bb738c33d10e9 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Fri, 10 Feb 2012 00:02:33 +0100 Subject: [PATCH] Make pylint ignore TODO/XXX/FIXME in the code, so we can see more important errors through the noise --- pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index d2f84b77..98e10416 100644 --- a/pylintrc +++ b/pylintrc @@ -18,6 +18,7 @@ # R0921 - Abstract class not referenced # W0141 - Used builtin function '%s' # W0142 - Used * or ** magic +# W0511 - TODO, FIXME and XXX in the code # W0613 - Unused argument %r # -disable = C0103,C0111,E0102,E0202,E1101,R0201,R0801,R0903,R0904,R0921,W0141,W0142,W0613 +disable = C0103,C0111,E0102,E0202,E1101,R0201,R0801,R0903,R0904,R0921,W0141,W0142,W0511,W0613