I have a series of tools running locally and on Jenkins to check and format my Python code:
- autoflake
- isort
- black
I use pyproject.toml
file to configure black, isort with .isort.cfg
and autoflake with command line parameters because I haven't found any support to configure it with a configuration file.
Is there way to configure also isort and autoflake with pyproject.toml
?
I would like to have all tools configured with just a single file.