eslint-plugin-react VS eslint-plugin-prettier

Compare eslint-plugin-react vs eslint-plugin-prettier and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
eslint-plugin-react eslint-plugin-prettier
67 13
8,810 3,163
0.5% 1.3%
8.6 7.7
8 days ago 17 days ago
JavaScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

eslint-plugin-react

Posts with mentions or reviews of eslint-plugin-react. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-08.
  • Interesting Bugs Caught by ESLint's no-constant-binary-expression
    4 projects | news.ycombinator.com | 8 Nov 2023
    > [1] https://github.com/jsx-eslint/eslint-plugin-react/blob/maste...

    From what I remember, being able to pass children as a prop is considered a side-effect of an implementation detail, that breaks the expected abstraction. There really isn't any reason to use it, and I think there's a chance it may even confuse the virtual dom diffing?

    Also this would prevent you from accidentally doing both at once:

      Is it me?}>
  • Speeding up the JavaScript ecosystem – Polyfills gone rogue
    11 projects | news.ycombinator.com | 21 Sep 2023
    I try to focus on the issues rather than individuals, but the root of the problems in the listed eslint plugin libraries points to ljharb.

    If you do some simple digging into these libraries, you will find that these types of commits are quite common within them.

    https://github.com/jsx-eslint/eslint-plugin-react/commit/e1d...

    https://github.com/jsx-eslint/jsx-ast-utils/commit/bad51d062...

    https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/commit/...

    He would rather see the download count of these polyfill libraries https://github.com/ljharb/ljharb#projects-i-maintain increase, compared to assessing the health of the JavaScript ecosystem.

  • The Best ESLint Rules for React Projects
    8 projects | dev.to | 15 Sep 2023
    An obvious pick for React projects, but eslint-plugin-react along with their plugin:react/recommended rule set is a must. This will give you some sensible rules such as requiring a key to be specified in JSX arrays. eslint-config-airbnb is another good (if a bit loose) base rule set on top of eslint-plugin-react to start from.
  • Avoid "&&" Operator for Conditional Rendering in React
    1 project | dev.to | 8 Jul 2023
    If you already have the eslint-plugin-react installed, you can enable the following rule.
  • Create React UI Lib 1.1: Ladle and ESLint
    7 projects | dev.to | 8 Jul 2023
    You can also add ESLint now (props to @femincan for the suggestion). It comes with recommended settings for these plugins: typescript, prettier, react, react-hooks, jsx-a11y.
  • Confusion over one of the examples of the jsx-no-literals linting rule
    1 project | /r/reactjs | 1 Jun 2023
  • What's weirdest webdev practice in your company?
    1 project | /r/webdev | 7 May 2023
    Also for what it’s worth, there’s a React ESLint code rule that can enforce this behavior either way for Component props - I’m not in front of a code base atm, but I wonder if my preference for the syntax above is influenced by a popular linting preset like AirBnB which enforces this rule? https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-curly-brace-presence.md
  • Removing Default React Imports. For a Cleaner Code
    1 project | dev.to | 14 Feb 2023
    The missing piece is on this page, in a small note at the end of the page: the eslint rule to disallow missing React when using JSX.
  • Ask HN: What are you predictions for 2023?
    6 projects | news.ycombinator.com | 25 Dec 2022
    Thanks for weighing in, that's good to know. After wondering if this could be auto-refactored, I came across https://github.com/jsx-eslint/eslint-plugin-react/blob/maste..., will definitely have to give that (with `--fix`) a try in the new year and see if I can get the team on board! – desire for typescript being a compelling factor.

    Personally I do like the non-destructured `props.abc` throughout component code, really helps clarify at a glance where something is coming from, whether it's locally or externally defined, etc. Code style is an endless exercise in compromises/opinions though, even _with_ tools like eslint and prettier.

  • Recommended React Hooks Convention
    2 projects | dev.to | 15 Nov 2022
    eslint-plugin-react react/hook-use-state

eslint-plugin-prettier

Posts with mentions or reviews of eslint-plugin-prettier. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-08.
  • Create React UI Lib 1.1: Ladle and ESLint
    7 projects | dev.to | 8 Jul 2023
    You can also add ESLint now (props to @femincan for the suggestion). It comes with recommended settings for these plugins: typescript, prettier, react, react-hooks, jsx-a11y.
  • How do I get eslint to work with prettier, TypeScript and null-ls?
    4 projects | /r/neovim | 22 Feb 2023
    I recommend installing and configuring the eslint-plugin-prettier package in your project: https://github.com/prettier/eslint-plugin-prettier
  • Setting up ESLint & Prettier in ViteJS
    10 projects | dev.to | 11 Aug 2022
    eslint-plugin-prettier
  • Why use prettier if ESLint can format?
    3 projects | /r/node | 27 Jul 2022
    Another approach that you can also take is a sort of "prettier as an ESLint plugin" option, such with eslint-plugin-prettier. The idea is that the developer only needs to run one tool (ESLint), but you add a plugin to ESLint that just calls prettier and converts the prettier error messages to ESLint error messages. I've worked at companies that have used this approach, and it makes setting up your editor/IDE very simple, because you've only got one tool to configure. That said, I personally don't like it because it forces you to use ESLint's "auto fix" functionality, which I find works well for formatting, but IME less well for some of the other lints.
  • Introducing Swarmion 🐝, a Type-safe Serverless Microservices Framework
    7 projects | dev.to | 19 May 2022
    A comprehensive set of formatting (through eslint-plugin-prettier) and linting rules, generated with Clinter. Once again, each package can easily extend the root configuration.
  • Modern, faster alternatives to ESLint
    10 projects | dev.to | 3 May 2022
    The eslint-config-prettier package disables all ESLint rules that might conflict with Prettier. This lets us use ESLint configurations without letting it get in the way when using Prettier. We can then use the eslint-plugin-prettier package to integrate Prettier rules into ESLint rules. Finally, we must set the Prettier rules in the ESLint configuration file. Add the following configuration to the .eslintrc file in the root directory of the application:
  • Running prettier 40x faster than prettier CLI using dprint
    7 projects | news.ycombinator.com | 25 Apr 2022
    We run prettier through eslint, and run eslint through jest which provides parallelism. eslint also has a cache... So I'm not sure what dprint gets you over that?

    https://github.com/jest-community/jest-runner-eslint

    https://github.com/prettier/eslint-plugin-prettier

  • [AskJS] Why is is prettier used if eslint can format?
    3 projects | /r/javascript | 11 Mar 2022
    I personally use eslint-plugin-prettier so Prettier formatting issues are shown in my editor and are reported when linting using ESLint.
  • The Ultimate Guide to TypeScript Monorepos
    17 projects | dev.to | 26 Nov 2021
    When installing the Prettier and ESLint extensions for VSCode, formatting and linting will also work within VSCode for any files in the monorepo. Only tweak required to make this work is to configure the Prettier plugin for ESLint (see example .eslintrc.json). Otherwise Prettier and ESLint will get in each other’s way and make for a poor editing experience. To make this work, the following two settings will also need to be configured in a .vscode/settings.json configuration (see settings.json):
  • Starter using Vite + React + TypeScript + Tailwind CSS.
    9 projects | dev.to | 21 Mar 2021
    NOTICE: The template does not use eslint-plugin-prettier and prettier-eslint. So I recommend that running commands individually. e.g. prettier && eslint.

What are some alternatives?

When comparing eslint-plugin-react and eslint-plugin-prettier you can also consider the following projects:

stylelint-config-prettier - Turns off all rules that are unnecessary or might conflict with prettier.

Tailwind CSS - A utility-first CSS framework for rapid UI development.

berry - 📦🐈 Active development trunk for Yarn ⚒

vite - Next generation frontend tooling. It's fast!

prop-types - Runtime type checking for React props and similar objects

eslint-config-prettier - Turns off all rules that are unnecessary or might conflict with Prettier.

javascript - JavaScript Style Guide

vite-react-ts-tailwind-firebase-starter - Starter using Vite + React + TypeScript + Tailwind CSS. And already set up Firebase(v9), Prettier and ESLint.

razzle - ✨ Create server-rendered universal JavaScript applications with no configuration

dprint-vscode - Visual Studio Code extension for formatting code with dprint.

stylelint - A mighty CSS linter that helps you avoid errors and enforce conventions.

prettier-eslint - Code :arrow_right: prettier :arrow_right: eslint --fix :arrow_right: Formatted Code :sparkles: