|
|
|
|
|
by cimmanom
2907 days ago
|
|
Some will let you specify files or directories to exclude. Others let you enable/disable one rule at a time. It took us about 18 months of gradual chipping away to get our codebase to pass a linter, enabling one rule or class of rules at a time. We're still working on test coverage. The key is to make sure all new code is covered (enforce in code review) and then very gradually backfill the rest. Add reproduction before fixing a bug. Add end to end coverage before a refactoring. |
|