# eslint-plugin-react-jsx

> ESLint React's ESLint plugin for React Flavored JSX rules.

Latest version **5.20.3** (published 2026-09-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install eslint-plugin-react-jsx
pnpm add eslint-plugin-react-jsx
yarn add eslint-plugin-react-jsx
bun add eslint-plugin-react-jsx
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 5.20.3 |
| Published | 2026-09-21 |
| First published | 2026-03-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=22.0.0 |
| Dependencies | 7 |
| Unpacked size | 34.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 582 |
| Author | Rel1cx |
| Maintainers | rel1cx |
| Keywords | react, jsx, eslint, eslint-react, eslint-plugin, eslint-plugin-react-jsx |

## Links

- npm: https://www.npmjs.com/package/eslint-plugin-react-jsx
- Repository: https://github.com/Rel1cx/eslint-react
- Issues: https://github.com/Rel1cx/eslint-react/issues
- npm.io page: https://npm.io/package/eslint-plugin-react-jsx

## Dependencies (7)

- [@eslint-react/ast](https://npm.io/package/@eslint-react/ast.md) 5.20.3
- [@eslint-react/jsx](https://npm.io/package/@eslint-react/jsx.md) 5.20.3
- [@eslint-react/core](https://npm.io/package/@eslint-react/core.md) 5.20.3
- [@eslint-react/eslint](https://npm.io/package/@eslint-react/eslint.md) 5.20.3
- [@eslint-react/shared](https://npm.io/package/@eslint-react/shared.md) 5.20.3
- [@typescript-eslint/types](https://npm.io/package/@typescript-eslint/types.md) ^8.70.0
- [@typescript-eslint/utils](https://npm.io/package/@typescript-eslint/utils.md) ^8.70.0

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 5.20.3 (latest) — 2026-09-21
- 5.12.0-beta.2 (beta) — 2026-07-07
- 5.8.7-next.1 (next) — 2026-05-28
- 4.2.1-rc.1 (rc) — 2026-04-01
- 0.0.0 (alpha) — 2026-03-14
- 5.20.2 — 2026-09-20
- 5.20.1 — 2026-09-20
- 5.20.0 — 2026-09-19
- 5.19.1 — 2026-09-14
- 5.19.0 — 2026-09-06
- 5.18.10 — 2026-09-06
- 5.18.9 — 2026-09-06
- 5.18.8 — 2026-09-05
- 5.18.7 — 2026-09-02
- 5.18.6 — 2026-08-13
- … 255 more at https://npm.io/package/eslint-plugin-react-jsx/versions

## README

# eslint-plugin-react-jsx

React Flavored JSX rules for React.

## Install

```sh
# npm
npm install --save-dev eslint-plugin-react-jsx
```

## Setup

```ts
import js from "@eslint/js";
import reactJsx from "eslint-plugin-react-jsx";
import { defineConfig } from "eslint/config";
import tseslint from "typescript-eslint";

export default defineConfig(
  {
    files: ["**/*.{ts,tsx}"],
    extends: [
      js.configs.recommended,
      tseslint.configs.recommended,
      // Add configs from eslint-plugin-react-jsx
      reactJsx.configs.recommended,
    ],
    rules: {
      // Put rules you want to override here
    },
  },
);
```

## Rules

<https://eslint-react.xyz/docs/rules#jsx-rules>

---
_Source: https://npm.io/package/eslint-plugin-react-jsx · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
