1-Linters — A little but necessary demon for code review.

source: miro.medium.com(max)

Before you push your written code to GitHub, you need to check for bugs, errors, stylistic errors, and suspicious constructs.

Even experienced programmers make omission errors hence, it is a good practice to integrate a tool that can help check these errors before a code is pushed from a feature branch to main.

Ladies and Gentlemen, I present Linters - a tool that can help analyze these codes.

It is necessary to set up your projects with linter installed in Github.

To set it up, please use this documentation.

Quality code may take a bit more time but it is definitely worth the time spent — David Obi

--

--