Replies: 1 comment 2 replies
-
Unfortunately, if I understand the question correctly, I don't think we support what you're looking for, which is: not wrapping imports that exceed a certain line length. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am considering switching from flake8.
(since pydocstyle has been deprecated)
So far, I have been using
flake8-import-order
to sort imports.I tried ruff's isort, and it seems that the lint rule of isort is affected by formatter. Even if the sort order is correct, it tries to split a long import into individual lines, and an error occurs.
I don't like this behavior because I don't like too long vertical lines because they are not legible to me.
Is there a way to ignore format and only lint about the order of imports?
Beta Was this translation helpful? Give feedback.
All reactions