You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use 'ignore' in tox.ini. This flag completely replaces the default ignored warnings. And therefore re-enable some mutually exclusive warnings such as W503 and W504 (line break before/after operator) which were never intended to be applicable both at the same time.
We use 'ignore' in tox.ini. This flag completely replaces the default ignored warnings. And therefore re-enable some mutually exclusive warnings such as W503 and W504 (line break before/after operator) which were never intended to be applicable both at the same time.
See this thread for details:
https://gitlab.com/pycqa/flake8/issues/466
In our tox.ini could we change this
ignore = F405
to
extend-ignore = F405,W503
?
The text was updated successfully, but these errors were encountered: