summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-04-22 16:34:30 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-04-22 16:34:30 -0400
commitdff7396f52d4540b6831ad8043d1aa4cc0136f15 (patch)
treefa7d64d04521fd432036b55628e7bf94fed8b90e /pylintrc
parent83085e033fd804685509636f9fa325141a8c8c06 (diff)
downloadpython-coveragepy-dff7396f52d4540b6831ad8043d1aa4cc0136f15.tar.gz
Update to pylint 1.7.1
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc6
1 files changed, 4 insertions, 2 deletions
diff --git a/pylintrc b/pylintrc
index cad40e8..05bdf43 100644
--- a/pylintrc
+++ b/pylintrc
@@ -63,6 +63,7 @@ disable=
bad-whitespace,
global-statement,
broad-except,
+ no-else-return,
# Messages that may be silly:
no-self-use,
no-member,
@@ -197,8 +198,9 @@ acquired-members=REQUEST,acl_users,aq_parent
# Tells wether we should check for unused import in __init__ files.
init-import=no
-# A regular expression matching names used for dummy variables (i.e. not used).
-dummy-variables-rgx=_|dummy|unused|.*_unused
+# A regular expression matching names of unused arguments.
+ignored-argument-names=_|unused|.*_unused
+dummy-variables-rgx=_|unused|.*_unused
# List of additional names supposed to be defined in builtins. Remember that
# you should avoid to define new builtins when possible.