From 0632ce42f347280422e4c7dc18ec4fde6f8289c7 Mon Sep 17 00:00:00 2001 From: Matt Bachmann Date: Mon, 30 Nov 2015 23:13:00 -0500 Subject: [PATCH] Remove deprecated and unneeded options from our pylint rc --- pylintrc | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/pylintrc b/pylintrc index 1618ae0a..a8df2be2 100644 --- a/pylintrc +++ b/pylintrc @@ -85,10 +85,6 @@ reports=no # (RP0004). evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) -# Add a comment according to your evaluation note. This is used by the global -# evaluation report (RP0004). -comment=no - [TYPECHECK] @@ -100,10 +96,6 @@ ignore-mixin-members=yes # (useful for classes with attributes dynamically set). ignored-classes=SQLObject -# When zope mode is activated, add a predefined set of Zope acquired attributes -# to generated-members. -zope=no - # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E0201 when accessed. Python regular # expressions are accepted. @@ -125,9 +117,6 @@ generated-members= [BASIC] -# Required attributes for module, separated by a comma -required-attributes= - # List of builtins function names that should not be used, separated by a comma bad-functions=map,filter,apply,input @@ -269,10 +258,6 @@ max-public-methods=20 [CLASSES] -# List of interface methods to ignore, separated by a comma. This is used for -# instance to not check methods defines in Zope's Interface base class. -ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by - # List of method names used to declare (i.e. assign) instance attributes. defining-attr-methods=__init__,__new__,setUp