diff options
author | Tim Bielawa <timbielawa@gmail.com> | 2016-12-09 10:55:25 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-09 10:55:25 -0800 |
commit | 68bd0d9d8318bedd36c2ff45b70a6db0329248c6 (patch) | |
tree | 6a2370170bed3fb4e83d1ad64bad07722d48c039 /git | |
parent | e138b67d12eb0eb1ccb5c9ed7c807b688c58527c (diff) | |
parent | b66a5a667d89f73a9bccdeb0822a85c131340246 (diff) | |
download | openshift-68bd0d9d8318bedd36c2ff45b70a6db0329248c6.tar.gz openshift-68bd0d9d8318bedd36c2ff45b70a6db0329248c6.tar.bz2 openshift-68bd0d9d8318bedd36c2ff45b70a6db0329248c6.tar.xz openshift-68bd0d9d8318bedd36c2ff45b70a6db0329248c6.zip |
Merge pull request #2955 from tbielawa/fix-pooched-ci
Fixes to 'make ci'
Diffstat (limited to 'git')
-rw-r--r-- | git/.pylintrc | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/git/.pylintrc b/git/.pylintrc index fe6eef6de..9c98889b3 100644 --- a/git/.pylintrc +++ b/git/.pylintrc @@ -71,7 +71,7 @@ confidence= # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" # w0511 - fixme - disabled because TODOs are acceptable -disable=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,W0511,R0801 +disable=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,W0511,R0801,locally-disabled,file-ignored [REPORTS] @@ -79,7 +79,7 @@ disable=E1608,W1627,E1601,E1603,E1602,E1605,E1604,E1607,E1606,W1621,W1620,W1623, # Set the output format. Available formats are text, parseable, colorized, msvs # (visual studio) and html. You can also give a reporter class, eg # mypackage.mymodule.MyReporterClass. -output-format=text +output-format=parseable # Put messages in a separate file for each module / package specified on the # command line instead of printing them on stdout. Reports (if any) will be @@ -114,9 +114,6 @@ logging-modules=logging [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,input @@ -348,10 +345,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 |