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
I have the following mypy's configuration line at the top of my file:
# mypy: disable-error-code="attr-defined"
When I'm running flake8, I'm getting E800 error on this line. If I add noqa: E800, mypy is ignoring this config line. I've tried the following variations:
I figured out, that I can ignore E800 error for the whole file, but that does not seem as a good option. Is there a way to config all this, or does the plugin itself require some fix? Thank you!
I'm using flake8-eradicate==1.4.0 installed through wemake-python-styleguide.
The text was updated successfully, but these errors were encountered:
Hello!
I have the following
mypy's
configuration line at the top of my file:When I'm running
flake8
, I'm gettingE800
error on this line. If I addnoqa: E800
,mypy
is ignoring this config line. I've tried the following variations:I figured out, that I can ignore
E800
error for the whole file, but that does not seem as a good option. Is there a way to config all this, or does the plugin itself require some fix? Thank you!I'm using
flake8-eradicate==1.4.0
installed throughwemake-python-styleguide
.The text was updated successfully, but these errors were encountered: