Skip to content

Commit

Permalink
Don't complain about the _ function being used
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsb committed Mar 16, 2011
1 parent 699abfe commit 1aa44c3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pylintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# The format of this file isn't really documented; just use --generate-rcfile

[Messages Control]
# W0511: TODOs in code comments are fine.
# W0142: *args and **kwargs are fine.
Expand Down Expand Up @@ -25,3 +27,10 @@ no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$
max-public-methods=100
min-public-methods=0
max-args=6

[Variables]

# List of additional names supposed to be defined in builtins. Remember that
# you should avoid to define new builtins when possible.
# _ is used by our localization
additional-builtins=_

0 comments on commit 1aa44c3

Please sign in to comment.