ESlint
Here we'll talk a little about EsLint
For a start we'll use typescript-eslint, as you may already know using linting improves code quality and ensures that the code structure remains consistent and easy to read Running lint before any code review steps means developers they no longer need to waste time considering the code structure as part of the code review process, increasing productivity and enabling a more adherent coding sprint estimate.
Okay, what else does that help me?
Modern JavaScript linting also includes automatic bugfixing. And one of the tools that enable this kind of verification is ESLint, an open source JavaScript project that allows developers to discover problems with their code without having to run it.
Last updated
Was this helpful?