-
-
Notifications
You must be signed in to change notification settings - Fork 583
New issue
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
wemake
profile inconsistency: 80 vs 79 line length
#2182
Comments
Merged. |
This actually cause a regression in almost all of my projects :) The real value is I will send a PR to revert this change. |
Ah, my bad and apologies. That was my misconfiguration of |
No worries :) |
I am using
wemake-python-styleguide
linter, which states "80" line length. However, its real limit is 79, after whichisort
should proceeding with newline for long import. I found that with the following line of code:It passes
isort
withwemake
profile, butwemake
throws error:python_file.py:1:80: E501 line too long (80 > 79 characters)
Need to fix profile config and add test (will be done)
The text was updated successfully, but these errors were encountered: