Followed black, which is very straightforward with very limited options. Default line length of 88 chars was adopted together with --experimental-string-processing for breaking long strings.
When pushing code to this repo, developers should either:
run black --experimental-string-processing .
enable code formatting on save in their IDE
In the future:
GitHub hooks should take care of making sure all code goes through black
Additional tools like flake8 and isort might be included to further improve code style consistency
Followed black, which is very straightforward with very limited options. Default line length of 88 chars was adopted together with
--experimental-string-processing
for breaking long strings.When pushing code to this repo, developers should either:
black --experimental-string-processing .
In the future:
flake8
andisort
might be included to further improve code style consistencyCloses #30.