pylint: Enable bad-continuation and ungrouped-imports warnings and update the list of warnings to eliminate in the future

This commit is contained in:
Kamil Śliwak 2021-12-21 15:27:41 +01:00
parent dece5f4de2
commit 589f4b2a83

View File

@ -14,10 +14,8 @@
# ATTENTION: This list should be extended with care, consider using NOLINT comments inside your # ATTENTION: This list should be extended with care, consider using NOLINT comments inside your
# python files instead, as the goal is actually to reduce the list of globally disabled checks. # python files instead, as the goal is actually to reduce the list of globally disabled checks.
# #
# TODO: What could be eliminated in future PRs: bad-continuation, invalid-name, # TODO: What could be eliminated in future PRs: invalid-name, pointless-string-statement, redefined-outer-name.
# undefined-variable, unused-*, useless-object-inheritance.
disable= disable=
bad-continuation,
bad-indentation, bad-indentation,
bad-whitespace, bad-whitespace,
duplicate-code, duplicate-code,
@ -27,8 +25,7 @@ disable=
pointless-string-statement, pointless-string-statement,
redefined-outer-name, redefined-outer-name,
too-few-public-methods, too-few-public-methods,
too-many-public-methods, too-many-public-methods
ungrouped-imports
[BASIC] [BASIC]