Disable TODO warnings in pylint
authorIustin Pop <iustin@google.com>
Mon, 28 Dec 2009 16:40:52 +0000 (17:40 +0100)
committerIustin Pop <iustin@google.com>
Mon, 4 Jan 2010 09:12:19 +0000 (10:12 +0100)
We don't get any useful out of this - a git grep is as effective, and
these only pollute the pylint output.

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Olivier Tharan <olive@google.com>

pylintrc

index f95779b..3fffb30 100644 (file)
--- a/pylintrc
+++ b/pylintrc
@@ -83,3 +83,25 @@ notes = FIXME,XXX,TODO
 min-similarity-lines = 4
 ignore-comments = yes
 ignore-docstrings = yes
+
+[MESSAGES CONTROL]
+
+# Enable only checker(s) with the given id(s). This option conflicts with the
+# disable-checker option
+#enable-checker=
+
+# Enable all checker(s) except those with the given id(s). This option
+# conflicts with the enable-checker option
+#disable-checker=
+
+# Enable all messages in the listed categories (IRCWEF).
+#enable-msg-cat=
+
+# Disable all messages in the listed categories (IRCWEF).
+disable-msg-cat=
+
+# Enable the message(s) with the given id(s).
+#enable-msg=
+
+# Disable the message(s) with the given id(s).
+disable-msg=W0511