vscode-ruff icon indicating copy to clipboard operation
vscode-ruff copied to clipboard

Question: Is showing all errors (non-auto-fixable) in the editor supported?

Open idoob opened this issue 3 months ago • 1 comments

The docs explain that the extension shows all auto-fixable errors in the editor. Is there another issue/feature request asking for the functionality to show all errors (even the non-auto-fixable errors) ?

idoob avatar Sep 25 '25 16:09 idoob

Could you link to the part of the documentation that said this? I believe we should already show all errors, even those without fixes, so the docs may be misleading.

For example, if I try this snippet in VS Code, I still see the import-shadowed-by-loop-var (F402) diagnostic even though it doesn't have an auto fix.

import math

for math in range(2): ...

ntBre avatar Sep 25 '25 16:09 ntBre