Skip to content

Commit 1c58a64

Browse files
committed
Disable new pylint warnings for pre-existing issues
1 parent caf7857 commit 1c58a64

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.pylintrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ disable=
1515
bad-mcs-classmethod-argument,
1616
bare-except,
1717
broad-except,
18+
cyclic-import,
1819
duplicate-bases,
1920
duplicate-code,
2021
eval-used,
@@ -30,6 +31,7 @@ disable=
3031
no-self-argument,
3132
no-staticmethod-decorator,
3233
not-callable,
34+
possibly-used-before-assignment,
3335
protected-access,
3436
raise-missing-from,
3537
redefined-outer-name,
@@ -40,8 +42,10 @@ disable=
4042
too-many-lines,
4143
too-many-locals,
4244
too-many-nested-blocks,
45+
too-many-positional-arguments,
4346
too-many-public-methods,
4447
too-many-statements,
48+
used-before-assignment,
4549
wrong-import-position,
4650
wrong-import-order,
4751
ungrouped-imports,

0 commit comments

Comments
 (0)