Closed mastak closed 6 years ago
Step to reproduce:
W503
def update_actions(): return ( some_big_function_name_1() + some_big_function_name_2() )
> some.py
some.py
pycodestyle ./some.py
pycodestyle
[pycodestyle] ignore = W601
> tox.ini
./some.py:4:9: W503 line break before binary operator
With default settings, there is no warning, but if you add a rule to ignore W601 pycodestyle shows W503 errors.
W601
W503 is ignored by default, as are some others. When you set ignore directly, the default ignores get overridden.
ignore
Step to reproduce:
W503
:>
some.py
pycodestyle ./some.py
=> empty outputpycodestyle
settings> tox.ini
pycodestyle ./some.py
=>./some.py:4:9: W503 line break before binary operator
With default settings, there is no warning, but if you add a rule to ignore
W601
pycodestyle showsW503
errors.