Lint specific rule + auto-add ignore comments #2618
Faithfinder
started this conversation in
Ideas
Replies: 1 comment
-
I proposed the first one in #58. I will work on in a near future. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Started a new job recently and have opened the new to me world of Python. Where I met the local counterpart to Biome - Ruff. And it has a couple of very nice capabilities that work together really well:
ruff check --select %RULE%
would lint the codebase using that rule onlyruff check --add-noqa
would automatically add ignore comments to every violationCombined together, it means that you can easily evaluate a new rule for your codebase, and either auto-fix that exact rule (safe or unsafe fixes), or ignore all existing occurrences, all without messing with the config. I loved the experience and would love something like that in JS world
Beta Was this translation helpful? Give feedback.
All reactions