Hey everyone, thanks for reading my Blog post.
This week I have worked on the issue which i have described in my previous post Planning.
I was successfully able to add the ESlint in the project.
General Overview
- Added the ESlint
- Added the
.gitignore
in the project - Fix all the issues generated by ESlint
- Created
npm script
to run the ESlint from commnad line - To run
ESlint
on all the files use cmdnpm run esLint
Linter
Linters help us spot "silly" mistakes that all programmers make, or help us avoid certain code patterns that often lead to bugs. We want to make it easy for ourselves and new developers joining our project to not introduce bugs or bad code.
Top comments (0)