Stop Using Linters and Formatters in CI

7 months ago
2

Linters and formatters are only useful if you can easily use their feedback to fix problems with code. Real problems, not imaginary issues because someone is pedantic about the "right way" to write code. Therefore it makes no sense to use these tools if you can't immediately use the feedback to make changes to the code... use them at code type-time (in your IDE) and not at commit-time and definitely not at CI-time.

Loading comments...