-
-
Notifications
You must be signed in to change notification settings - Fork 589
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
Support google style guide #969
Labels
enhancement
New feature or request
Comments
timothycrosley
added a commit
that referenced
this issue
Jan 7, 2020
timothycrosley
added a commit
that referenced
this issue
Jan 7, 2020
Fix issue #969: Add support for single line exclusions
This is now supported in develop and will make it's way into the 5.0.0 release: https://github.com/timothycrosley/isort/blob/develop/isort/profiles.py#L22 Thanks! ~Timothy |
awesome, thank you very much! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The google python style guide suggests enforcing one import per line which can be achieved with the
force_single_line
option. However they also suggest an exception for thetyping
module. I can't find any way of specifying this to isort, does it exist? If not would it be much effort to implement? I imagine that a nice way of doing this would be to allow specifying certain packages as overrides for theforce_single_line
rule.The text was updated successfully, but these errors were encountered: