We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reading the contributing documentation section on pep8, I noticed the acceptable line-length for Python code is given as 79 characters as specified in pep8.
we restrict line-length to 79 characters to promote readability
However, looking at setup.cfg, I see that the maximum line length is specified as 88 characters and flake8 is set up to ignore line length errors.
[flake8] max-line-length = 88 ignore = E501, # longer line length
Is the contributing documentation out-of-date, or am I making an incorrect interpretation of setup.cfg?
setup.cfg
The text was updated successfully, but these errors were encountered:
setup.cfg should be changed (this was changed previously but not changed back), PR welcome
black enforces this now so the flake check doesn’t really do anything (for like length)
Sorry, something went wrong.
I opened #27226 for updating the contributing guide (and initial PR: #27233)
No branches or pull requests
Reading the contributing documentation section on pep8, I noticed the acceptable line-length for Python code is given as 79 characters as specified in pep8.
However, looking at setup.cfg, I see that the maximum line length is specified as 88 characters and flake8 is set up to ignore line length errors.
Is the contributing documentation out-of-date, or am I making an incorrect interpretation of
setup.cfg
?The text was updated successfully, but these errors were encountered: