Instagram / Fixit

Advanced Python linting framework with auto-fixes and hierarchical configuration that makes it easy to write custom in-repo lint rules.
https://fixit.rtfd.io/en/latest/
Other
666 stars 62 forks source link

A way to show silenced errors #398

Open samueljsb opened 10 months ago

samueljsb commented 10 months ago

It would be very helpful to be able to suppress the # lint-fixme comments to show those errors. In particular, this would help where an auto-fix has been added for a rule and we now want to apply that auto-fix to the violations marked with a fixme comment.

At the moment we have to remove all of the fixme comments in order to apply the new auto-fix.

flake has a --disable-noqa option, which does something similar.

Considerations: