-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
"# noqa" is ignored when per-file-ignores
is provided
#3972
Comments
As far as I see right now also, it is not about """
# docsting.py
https://github.com/robbitt07/django_boilerplate/blob/fcd03f03e9e9e54088cf69cd3c4bc83eabfd2666/utils/storage_backends.py#L8 # noqa: E501
""" Issue: |
Yeah that's correct -- we don't support """
# docsting.py
https://github.com/robbitt07/django_boilerplate/blob/fcd03f03e9e9e54088cf69cd3c4bc83eabfd2666/utils/storage_backends.py#L8
""" # noqa: E501 Flake8 respects either variant, so changing this should retain Flake8 compatibility. |
Hi there.
I am trying to integrate
ruff
as a possible replacement offlake8
and I see that behavior ofper-file-ignores
option is not the same as inflake8
.flake8
settingsflake8 respects
noqa
in that case, but notruff
. Not sure is it expected behavior forruff
or not?__init__.py:2:121: E501 Line too long (144 > 120 characters)
The text was updated successfully, but these errors were encountered: