Disable some pylint checks
Newer pylint added some checks that trigger a lot for this code base. Turn them off until we are ready to apply the new rules. They are: - c-extension-no-member (Informational) - keyword-arg-before-vararg (Warning) - inconsistent-return-statements (Refactor recommendation) Change-Id: I8c1f72bb334c87d62d47e8296d13c660d6bb5576 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
parent
00de8f9a9e
commit
87d98dcbe2
@ -12,6 +12,7 @@ disable=
|
|||||||
# "F" Fatal errors that prevent further processing
|
# "F" Fatal errors that prevent further processing
|
||||||
import-error,
|
import-error,
|
||||||
# "I" Informational noise
|
# "I" Informational noise
|
||||||
|
c-extension-no-member,
|
||||||
locally-disabled,
|
locally-disabled,
|
||||||
# "E" Error for important programming issues (likely bugs)
|
# "E" Error for important programming issues (likely bugs)
|
||||||
access-member-before-definition,
|
access-member-before-definition,
|
||||||
@ -31,6 +32,7 @@ disable=
|
|||||||
expression-not-assigned,
|
expression-not-assigned,
|
||||||
fixme,
|
fixme,
|
||||||
global-statement,
|
global-statement,
|
||||||
|
keyword-arg-before-vararg,
|
||||||
literal-comparison,
|
literal-comparison,
|
||||||
no-init,
|
no-init,
|
||||||
non-parent-init-called,
|
non-parent-init-called,
|
||||||
@ -67,6 +69,7 @@ disable=
|
|||||||
consider-merging-isinstance,
|
consider-merging-isinstance,
|
||||||
consider-using-ternary,
|
consider-using-ternary,
|
||||||
duplicate-code,
|
duplicate-code,
|
||||||
|
inconsistent-return-statements,
|
||||||
interface-not-implemented,
|
interface-not-implemented,
|
||||||
no-else-return,
|
no-else-return,
|
||||||
no-self-use,
|
no-self-use,
|
||||||
|
Loading…
Reference in New Issue
Block a user