ESLint is a popular NPM package that is used to check your Javascript code for possible syntax errors, and allows you to quickly reference rules through provided links that can help guide you to ...
To create ESLint plugins, you'll need to understand how to parse JavaScript code and how ESLint's architecture allows for plugins. The key components you'll need to grasp are: Concept: An AST is a ...