@DavidConnerCodeaholic

That’s easy. If you can’t autofix or filter by changing lint config, then…  sort the output by error type, then maybe group by file occurance. Then count the biggest offenders. Repeat the find/grep to narrow to a single type that can be fixed by find/replace. Eliminate the largest sets requiring the least effort first. 

Try to proceed so the patches in pullreqs are easy to process/approve, which may make things complicated. Oh and definitely don’t break the build/tests.

@levimk101

Overall, good video. However, you should try not use a linter for code style. Use a formatter, like Prettier for JS/TS.