iterative / py-template

Hypermodern Python Cookiecutter
http://cookiecutter-hypermodern-python.readthedocs.io/
MIT License
14 stars 7 forks source link

change max line length to 88 for formatters, linters #98

Closed jonburdo closed 1 year ago

jonburdo commented 1 year ago

We've discussed increasing the max line length from 79 to 88 (the default for the black formatter) as many people find 79 causes code to become too spread out vertically, especially when using black.

skshetry commented 1 year ago

I think we also need to set this for pylint in pyproject.toml:

[tool.pylint.format]
max-line-length=88