Skip to content

Commit

Permalink
Don't warn about C0111 (No docstrings)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
justinsb committed Mar 16, 2011
1 parent a151fab commit 7b7033b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 7b7033b

Please sign in to comment.