MichaelCurrin / py-project-template

Starter template for a Python app - including CI and docs 🐍 🌠
https://michaelcurrin.github.io/py-project-template/
MIT License
7 stars 3 forks source link

Add isort #14

Open MichaelCurrin opened 3 years ago

MichaelCurrin commented 3 years ago

Here in Makefile

TODO: How do not get error on a dir? for now cd. What args?

sort:
    cd twitterlib && isort
MichaelCurrin commented 3 years ago

Note that pylint actually does pick up bad import order. Can pylintt fix it?

Given pylint does some of the job and ordering is easy to fix by hand, is isort useful locally? And what about in CI?