From ec2f81f6a9982cf31ebe78765a07a2f28ff45607 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Sat, 20 Oct 2018 21:36:02 -0700 Subject: [PATCH] pylint: vastly simplify the config Remove all of the cruft from the default configuration. We don't rely on any of these entries. Signed-off-by: David Aguilar --- .pylintrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pylintrc b/.pylintrc index 5d1076f2..888979c0 100644 --- a/.pylintrc +++ b/.pylintrc @@ -59,7 +59,7 @@ confidence= # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" -disable=fixme,wrong-import-position,invalid-name,missing-docstring,no-self-use,too-many-instance-attributes,too-many-ancestors,E1608,W1627,E1601,E1603,E1602,E1605,E1604,E1607,E1606,W1621,W1620,W1623,W1622,W1625,W1624,W1609,W1608,W1607,W1606,W1605,W1604,W1603,W1602,W1601,W1639,W1640,I0021,W1638,I0020,W1618,W1619,W1630,W1626,W1637,W1634,W1635,W1610,W1611,W1612,W1613,W1614,W1615,W1616,W1617,W1632,W1633,W0704,W1628,W1629,W1636 +disable=fixme,wrong-import-position,invalid-name,missing-docstring,no-self-use,too-many-instance-attributes,too-many-ancestors [REPORTS] @@ -194,7 +194,7 @@ ignore-long-lines=^\s*(# )??$ single-line-if-stmt=no # List of optional constructs for which whitespace checking is disabled -no-space-check=trailing-comma,dict-separator +no-space-check= # Maximum number of lines in a module max-module-lines=3000 @@ -223,12 +223,12 @@ ignored-modules= # List of classes names for which member attributes should not be checked # (useful for classes with attributes dynamically set). -ignored-classes=SQLObject +ignored-classes= # 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. -generated-members=REQUEST,acl_users,aq_parent +generated-members= [SIMILARITIES] -- 2.11.4.GIT