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
With isort 5.0.0 it's now possible to format pyx in addition to the traditional .py files.
my sorting order in .py files is different than my sorting order in .pyx files.
Is there an option to have different configuration for different file extensions?
The text was updated successfully, but these errors were encountered:
This is implemented in develop and will find it's way out in the 5.3.0 release:
isort now has in both the config and CLI arguments, support for setting blocked_extensions and supported_extensions. This allows creating two config files, one that specifies sorting pyx files and another that specifies sorting pyfiles. Then isort would need to be executed per a config defined:
With
isort
5.0.0 it's now possible to formatpyx
in addition to the traditional.py
files.my sorting order in
.py
files is different than my sorting order in.pyx
files.Is there an option to have different configuration for different file extensions?
The text was updated successfully, but these errors were encountered: