Skip to content

Commit cddabb5

Browse files
committed
ignore sorting issues in pylint
1 parent 123a298 commit cddabb5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.pylintrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
[MESSAGES CONTROL]
44
disable = I0011, # locally-disabled
5-
R0903 # too-few-public-methods
5+
R0903, # too-few-public-methods
6+
C0413, # wrong-import-position (isort is handling this)
7+
C0412, # ungrouped-imports (isort is handling this)
68

79
[REPORTS]
810
# Set the output format. Available formats are text, parseable, colorized, msvs

0 commit comments

Comments
 (0)