aboutsummaryrefslogtreecommitdiffhomepage
path: root/.pylintrc-tests
diff options
context:
space:
mode:
authorGravatar Mehrdad Afshari <mmx@google.com>2018-06-07 23:40:03 -0700
committerGravatar Mehrdad Afshari <mmx@google.com>2018-06-07 23:40:03 -0700
commitadedd43b09e116f2059e6ce9992f97ce761b047d (patch)
treef3d3b9b4af860709053d41b7be1b434c7910e72a /.pylintrc-tests
parent109b5b1dccedeb702c8093a064b87097d39c332c (diff)
Disable additional pylint warnings due to upgrade
Diffstat (limited to '.pylintrc-tests')
-rw-r--r--.pylintrc-tests6
1 files changed, 6 insertions, 0 deletions
diff --git a/.pylintrc-tests b/.pylintrc-tests
index b358b2c4a0..33da14260d 100644
--- a/.pylintrc-tests
+++ b/.pylintrc-tests
@@ -106,3 +106,9 @@ disable=
# NOTE(nathaniel): I have disputed the premise of this inspection from
# the beginning and will continue to do so until it goes away for good.
useless-else-on-loop,
+ # NOTE(mmx): Our existing code is written to favor explicit else over
+ # relying on return within a branch.
+ no-else-return,
+ # NOTE(mmx): Disable unnecessary super-init requirement for abstract
+ # class implementations.
+ super-init-not-called,