Linting - Linting is the process of checking the source code for Programmatic as well as Stylistic errors. This is most helpful in identifying some common and uncommon mistakes that are made during coding. ESlint is a JavaScript linting tool. Prettifying – formatting the code (similar to ctrl+shift+f in eclipse). Prettier is a well know prettifying tool in JavaScript community.
Integrating Eslint & Prettier in React
- Installing and using ESlint in a JavaScript project. (Specific to JS project)
https://eslint.org/docs/user-guide/getting-started
- Installing and using ESlint along with Code prettier in a react-redux application and extending Airbnb’s style guide.