LoginSignup
0
0

More than 5 years have passed since last update.

JavaScript - babel-eslint vs eslint-plugin-babel vs eslint-plugin-react

Posted at

Good answer.

  • eslint-plugin-* are ESLint plugins, they add some additional rules to ESLint.

    • eslint-plugin-babel add some rules for some of the Babel experimental features which are not natively supported by ESLint.
    • eslint-plugin-react add some rules specifically for React, this mostly include good practices and JSX code formatting.
  • babel-eslint is a parser, it will transform your JavaScript code into an AST that will be used by ESLint to validate your code.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0