New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

eslint-plugin-react-jsx

Package Overview
Dependencies
Maintainers
1
Versions
266
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-react-jsx

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

Source
npmnpm
Version
5.18.2
Version published
Weekly downloads
586K
-19.01%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-react-jsx

React Flavored JSX rules for React.

Install

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

Setup

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

Keywords

react

FAQs

Package last updated on 04 Aug 2026

Related posts