chris48s / cookiecutter-python-package

MIT License
0 stars 0 forks source link

Add isort config #3

Closed chris48s closed 1 year ago

chris48s commented 1 year ago

Instead of relying on --profile black in makefile, set up an isort config so that you can run isort with no args independent of the Makefile. Just needs to be

.isort.cfg:

[settings]
profile=black
skip_gitignore=true

Also propagate this to all your repos