From adedd43b09e116f2059e6ce9992f97ce761b047d Mon Sep 17 00:00:00 2001 From: Mehrdad Afshari Date: Thu, 7 Jun 2018 23:40:03 -0700 Subject: Disable additional pylint warnings due to upgrade --- .pylintrc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index 453b45aab5..01184283df 100644 --- a/.pylintrc +++ b/.pylintrc @@ -75,3 +75,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, -- cgit v1.2.3