ci/pylintrc: disable wrong-import-order

This one has false positives across different Python versions and is not
that useful anyway.
This commit is contained in:
Wojtek Porczyk 2017-06-01 11:27:37 +02:00
parent 00a81b75a3
commit dc14b839c6

View File

@ -18,7 +18,8 @@ disable=
locally-enabled,
logging-format-interpolation,
missing-docstring,
star-args
star-args,
wrong-import-order
[REPORTS]