diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2015-05-21 15:27:34 -0400 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2015-05-21 15:27:34 -0400 |
commit | 09717b94a0b76d03db38baee793b141e1a651cdd (patch) | |
tree | a6bf1ffdd95bb04d5fdbeddb92a09fed9a8de886 | |
parent | b151e33e7e49d1de1c58286342d09cc9eba57287 (diff) | |
parent | 57739629dfffedf55680fffa6741ad1696092299 (diff) | |
download | openshift-09717b94a0b76d03db38baee793b141e1a651cdd.tar.gz openshift-09717b94a0b76d03db38baee793b141e1a651cdd.tar.bz2 openshift-09717b94a0b76d03db38baee793b141e1a651cdd.tar.xz openshift-09717b94a0b76d03db38baee793b141e1a651cdd.zip |
Merge pull request #240 from kwoodson/disable_pylint_fixme
Updating pylintrc settings.
-rw-r--r-- | git/.pylintrc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/git/.pylintrc b/git/.pylintrc index 2d45f867e..6cf68f7d6 100644 --- a/git/.pylintrc +++ b/git/.pylintrc @@ -70,7 +70,8 @@ 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=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 - 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 [REPORTS] @@ -321,7 +322,7 @@ max-args=5 ignored-argument-names=_.* # Maximum number of locals for function / method body -max-locals=15 +max-locals=20 # Maximum number of return / yield for function / method body max-returns=6 |