summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorjaypipes@gmail.com <>2010-08-09 12:20:47 -0400
committerjaypipes@gmail.com <>2010-08-09 12:20:47 -0400
commit948162e3bdd96cdbe5db9a0c25722ac63c04e264 (patch)
treebde5ea3ac3458b82efd59aa66bd6807929f28edd /pylintrc
parent2a069abf622029c3f3e7273ad1cc3fb17b529e63 (diff)
downloadnova-948162e3bdd96cdbe5db9a0c25722ac63c04e264.tar.gz
Disables warning about TODO in code comments in pylintrc
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc
index a853e5bed2..36ec7b346b 100644
--- a/pylintrc
+++ b/pylintrc
@@ -1,6 +1,10 @@
[Basic]
method-rgx=[a-z_][a-z0-9_]{2,50}$
+[MESSAGES CONTROL]
+# TODOs in code comments are fine...
+disable-msg=W0511
+
[Design]
max-public-methods=100
min-public-methods=0