We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NQA
I run vulture to test my code. An error I get from vulture is VT103:
vulture
my-lib.py:12: unused function 'method-name' (60% confidence)
I can silence this with noqa VT103. But then flake8-noqa will complain:
noqa VT103
NQA102 "# noqa: VT103" has no matching violations
If I try to silence NQA:
# noqa VT103,NQA102
then I get an error:
NQA102 "# noqa: VT103,NQA103" has no matching violations
Is there a way to instruct flake8-noqa to ignore a line?
flake8-noqa
The text was updated successfully, but these errors were encountered:
I'm in need of this as well. Maybe if flake8-noqa understood adding the code group (in op's case: VT) to the ignore or extend-ignore field ?
VT
ignore
extend-ignore
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I run
vulture
to test my code. An error I get from vulture is VT103:I can silence this with
noqa VT103
. But then flake8-noqa will complain:If I try to silence NQA:
then I get an error:
Is there a way to instruct
flake8-noqa
to ignore a line?The text was updated successfully, but these errors were encountered: