- [x] create a `pyprojects.toml` - [x] add necessary settings for black, isort and flake8 (see below) - [x] run all linters to change the style initialy before merging https://github.com/PFython/cleverdict/pull/38 ```toml [tool.black] line-length = 100 target-version = ['py39'] [tool.isort] combine_as_imports = true line_length = 100 profile = "black" ```