summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-06-25 15:31:22 -0400
committerNed Batchelder <ned@nedbatchelder.com>2016-06-25 15:31:22 -0400
commite3ee948ff6d9787524ee9f9595408a2652edb1d6 (patch)
tree4f4887c12113c1f964177d57b81ff7ebdce041d5 /pylintrc
parent83114f0f816488c8c5ddb083ee310f7b881f4b50 (diff)
downloadpython-coveragepy-git-e3ee948ff6d9787524ee9f9595408a2652edb1d6.tar.gz
Update pylint to 1.5.6
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc25
1 files changed, 6 insertions, 19 deletions
diff --git a/pylintrc b/pylintrc
index f8eb4bf4..39d231c1 100644
--- a/pylintrc
+++ b/pylintrc
@@ -18,9 +18,6 @@
# pygtk.require().
#init-hook=
-# Profiled execution.
-profile=no
-
# Add <file or directory> to the black list. It should be a base name, not a
# path. You may set this option multiple times.
ignore=
@@ -69,8 +66,13 @@ disable=
# Messages that may be silly:
no-self-use,
no-member,
-# formatting stuff
+ using-constant-test,
+ too-many-nested-blocks,
+# Formatting stuff
superfluous-parens,bad-continuation,
+# I'm fine deciding my own import order,
+ wrong-import-position,
+ wrong-import-order,
# Messages that are noisy for now, eventually maybe we'll turn them on:
invalid-name,
protected-access,
@@ -100,10 +102,6 @@ reports=no
# (R0004).
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 (R0004).
-comment=no
-
# Enable the report(s) with the given id(s).
#enable-report=
@@ -123,9 +121,6 @@ comment=no
#
[BASIC]
-# Required attributes for module, separated by a comma
-required-attributes=
-
# Regular expression which should only match functions or classes name which do
# not require a docstring
# Special methods don't: __foo__
@@ -184,10 +179,6 @@ ignore-mixin-members=yes
# (useful for classes with attributes dynamicaly set).
ignored-classes=SQLObject
-# When zope mode is activated, consider the acquired-members option to ignore
-# access to some undefined attributes.
-zope=no
-
# List of members which are usually get through zope's acquisition mecanism and
# so shouldn't trigger E0201 when accessed (need zope=yes to be considered).
acquired-members=REQUEST,acl_users,aq_parent
@@ -222,10 +213,6 @@ additional-builtins=
#
[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,reset