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
How would this feature be useful?
RUF100 detects unused noqa directives.
RUF100
noqa
$ ruff check --extend-select RUF100 src/pipx/__main__.py:11:28: RUF100 [*] Unused blanket `noqa` directive src/pipx/venv_inspect.py:111:37: RUF100 [*] Unused `noqa` directive (unknown: `T484`) Found 2 errors. [*] 2 fixable with the `--fix` option.
Describe the solution you'd like
Fix issues reported by ruff check --extend-select RUF100 and add RUF100 to pyproject.toml.
ruff check --extend-select RUF100
pyproject.toml
Describe alternatives you've considered
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
How would this feature be useful?
RUF100
detects unusednoqa
directives.Describe the solution you'd like
Fix issues reported by
ruff check --extend-select RUF100
and addRUF100
topyproject.toml
.Describe alternatives you've considered
The text was updated successfully, but these errors were encountered: