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
Only the changes made by isort are applied to the buffer (or the file, if writing to the file). If I put autopep8 first, only the changes made by autopep8 are applied.
isort should order python imports and autopep8 should fix code style problems. In the example below, both should make changes, isort should put the datetime import first and autopep8 should remove the space after arg in the run function.
When I configured multiple formatters for the same file type, only the first was applied
For example, for python formatting I set isort and autopep8 as formatters like this:
Only the changes made by isort are applied to the buffer (or the file, if writing to the file). If I put autopep8 first, only the changes made by autopep8 are applied.
isort should order python imports and autopep8 should fix code style problems. In the example below, both should make changes, isort should put the datetime import first and autopep8 should remove the space after arg in the run function.
The text was updated successfully, but these errors were encountered: