Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

eslint-plugin-react-jsx

Package Overview
Dependencies
Maintainers
1
Versions
217
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.

latest
Source
npmnpm
Version
5.9.0
Version published
Weekly downloads
322K
21.11%
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 12 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts