You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find most python imports tools support alphabetical order only with import statements before from X import ... statements.
Flake8-import-order is the only tool I find that supports the alphabetical order we are using, which ignores 'from' or 'import' or 'as', like google. But flake8-import-order only prints the flake warnings instead of automatically reordering imports.
Other tools such as isort, autopep8 supports reorder, but they don't support the alphabetical order we are using. My guess is because PEP8 style only enforces groups without enforcing the order within the groups.
Options:
See:
https://github.com/PyCQA
Important rules (running list):
The text was updated successfully, but these errors were encountered: