summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Santa Barbara <justin@fathomdb.com>2011-03-16 15:28:09 -0700
committerJustin Santa Barbara <justin@fathomdb.com>2011-03-16 15:28:09 -0700
commit7b7033bfb31c610b1f0295e6059ed44931dfe450 (patch)
tree084151fdee84e777c64f194a16e0ee89086f7436
parenta151fabdb7f3edef8ba17b204fe55c73fc15720a (diff)
downloadnova-7b7033bfb31c610b1f0295e6059ed44931dfe450.tar.gz
nova-7b7033bfb31c610b1f0295e6059ed44931dfe450.tar.xz
nova-7b7033bfb31c610b1f0295e6059ed44931dfe450.zip
Don't warn about C0111 (No docstrings)
While docstrings are great, requiring them is probably going too far. Let's get pylint useful first by having it not complain too much, then we can have a second stricter PyLint if desired.
-rw-r--r--pylintrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 378479ec5..135eea4d5 100644
--- a/pylintrc
+++ b/pylintrc
@@ -1,10 +1,12 @@
# The format of this file isn't really documented; just use --generate-rcfile
[Messages Control]
+# NOTE(justinsb): We might want to have a 2nd strict pylintrc in future
+# C0111: Don't require docstrings on every method
# W0511: TODOs in code comments are fine.
# W0142: *args and **kwargs are fine.
# W0622: Redefining id is fine.
-disable=W0511,W0142,W0622
+disable=C0111,W0511,W0142,W0622
[Basic]
# Variable names can be 1 to 31 characters long, with lowercase and underscores