Replies: 1 comment
-
I came here looking for this. Thanks for the nice description of the problem and solution. Related work available for eslint:
The above may serve as either a research list, or reference point for building future support for Biome. |
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
-
When working on old and bad codebase, it's currently not possible to introduce strict Biome linting.
Mostly, the requirements are:
However, with hundreds of linter errors throughout the codebase, there are two choices: refactor, and fix them (and in very bad codebases probably introduce bugs during the process) or add ignore comments. Linter error fixing is mostly pointless in bad code as it needs more refactoring anyways. Also, in most of the cases, there is no budget for it.
The second (add ignore comments) could be automated. The workflow would be:
lefthook
and have every new commit strictly linted.Beta Was this translation helpful? Give feedback.
All reactions