@@ -76,21 +76,22 @@ confidence=
7676# --disable=W"
7777disable =
7878 C0330, # Black disagrees with and explicitly violates this: https://github.com/python/black/issues/48
79- too-many-locals,
79+ abstract-method, # TODO: Fix abstract methods
8080 arguments-differ,
81- too-many-lines,
81+ cyclic-import, # TODO: Resolve cyclic imports
8282 fixme,
83- too-many-arguments,
8483 invalid-name,
85- too-many-instance-attributes,
86- len-as-condition, # TODO: Enable this check once pylint 2.4.0 is released and consumed due to the fix in https://github.com/PyCQA/pylint/issues/2684
8784 import-error, # Since we run Pylint before any of our builds in tox, this will always fail
88- protected-access, # TODO: Fix access
89- abstract-method, # TODO: Fix abstract methods
90- useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported.
91- cyclic-import, # TODO: Resolve cyclic imports
85+ import-outside-toplevel,
9286 no-self-use, # TODO: Convert methods to functions where appropriate
87+ protected-access, # TODO: Fix access
88+ signature-differs, # TODO: fix kwargs
89+ too-many-arguments,
9390 too-many-branches, # TODO: Simplify or ignore as appropriate
91+ too-many-instance-attributes,
92+ too-many-lines,
93+ too-many-locals,
94+ useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported.
9495
9596[REPORTS]
9697# Set the output format. Available formats are text, parseable, colorized, msvs
0 commit comments