vscode-ruff
vscode-ruff copied to clipboard
Question: Is showing all errors (non-auto-fixable) in the editor supported?
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) ?
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): ...