Disable additional pylint warnings due to upgrade

This commit is contained in:
Mehrdad Afshari 2018-06-07 23:40:03 -07:00
parent 109b5b1dcc
commit adedd43b09
2 changed files with 12 additions and 0 deletions

View File

@ -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,

View File

@ -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,