-
Notifications
You must be signed in to change notification settings - Fork 753
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
Pycodestyle is not detecting W605 and W503 #949
Comments
W503 is among the disabled by default rules |
you want |
(also, you should really not ignore W605, it will become a syntax error in a future version of python -- you probably want to |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi community,
I introduced two wrong rules (W605 & W503) in the example below:
When I run flake8 against this code, pycodestyle reports only W605
tox.ini
:And when I add an exception for W605 in the
tox.ini
file. pycodestyle reports W503.tox.ini
:$ flake8 example.py example.py:10:15: W503 line break before binary operator
Was it supposed to have both W503 and W605 in the first example?
My configuration:
The text was updated successfully, but these errors were encountered: