Skip to content

Commit 589f4b2

Browse files
committed
pylint: Enable bad-continuation and ungrouped-imports warnings and update the list of warnings to eliminate in the future
1 parent dece5f4 commit 589f4b2

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

scripts/pylintrc

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@
1414
# ATTENTION: This list should be extended with care, consider using NOLINT comments inside your
1515
# python files instead, as the goal is actually to reduce the list of globally disabled checks.
1616
#
17-
# TODO: What could be eliminated in future PRs: bad-continuation, invalid-name,
18-
# undefined-variable, unused-*, useless-object-inheritance.
17+
# TODO: What could be eliminated in future PRs: invalid-name, pointless-string-statement, redefined-outer-name.
1918
disable=
20-
bad-continuation,
2119
bad-indentation,
2220
bad-whitespace,
2321
duplicate-code,
@@ -27,8 +25,7 @@ disable=
2725
pointless-string-statement,
2826
redefined-outer-name,
2927
too-few-public-methods,
30-
too-many-public-methods,
31-
ungrouped-imports
28+
too-many-public-methods
3229

3330
[BASIC]
3431

0 commit comments

Comments
 (0)