From dff7396f52d4540b6831ad8043d1aa4cc0136f15 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 22 Apr 2017 16:34:30 -0400 Subject: Update to pylint 1.7.1 --- pylintrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pylintrc') 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. -- cgit v1.2.1