-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
all: Enable ruff E401,E402 import lints. #858
Conversation
This is a bit of a change, making each import go on a separate line. But I guess we have to do that because we have committed to using Luckily there is no difference in bytecode between |
I think we could reasonably commit to ignoring these, especially E402 (imports not at top ) because we need to add However, the current usage is pretty arbitrary - sometimes imports on the same line, sometimes imports on different lines, sometimes the same source file has both approaches for no apparent reason. So it is also nice to be consistent, IMO. |
Each import on its own line (or even going further: |
I don't exactly disagree, but I do want to point out that these individual small differences in style preference is why many projects just pick a formatter (like ruff) and have it auto-format the code. Instant consistency, minimal time overhead. No one gets their preferred individual style, but the code base all has the same style. |
AFAIK,
Aren't diffs smaller if imports are on separate lines? |
Depends, it has a bit too much configuration options actually. Though I think ruff's isort implementation is betrer in that regard.
Oops. I actually did mean to say 'all imports on their own line' ! Will edit original comment. |
Mostly small cleanups to put each top-level import on its own line. But explicitly disable the lint for examples/tests which insert the current directory into the path before importing. Signed-off-by: Angus Gratton <[email protected]>
OK, we're all on the same page now :) Merged. |
Mostly small cleanups, and explicit disable for examples/tests which insert the current directory into the path before importing.