
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@eslint-react/eslint-plugin
Advanced tools
ESLint React's main ESLint plugin. More than 50 ESLint rules to catch common mistakes and improve your React code. Built (mostly) from scratch.
More than 50 ESLint rules to catch common mistakes and improve your React code. Built (mostly) from scratch.
# npm
npm install --save-dev @eslint-react/eslint-plugin
Add @eslint-react to the plugins section of your .eslintrc.js configuration file.
module.exports = {
// ...
parser: "@typescript-eslint/parser",
extends: ["plugin:@eslint-react/recommended-legacy"],
plugins: ["@eslint-react"],
// ...
};
[!NOTE]
Rules that require type information are not enabled by default.To enable them, you need to set the
projectoption inparserOptionsto the path of yourtsconfig.jsonfile.Then replace
plugin:@eslint-react/recommended-legacywithplugin:@eslint-react/recommended-type-checked-legacy.
module.exports = {
// ...
parser: "@typescript-eslint/parser",
parserOptions: {
project: "./tsconfig.json", // <-- Point to your project's "tsconfig.json" or create a new one.
},
extends: ["plugin:@eslint-react/recommended-type-checked-legacy"],
plugins: ["@eslint-react"],
// ...
};
[!IMPORTANT]
These presets are for ESLintLegacyConfig(.eslintrc.*) only
plugin:@eslint-react/recommended-legacy)plugin:@eslint-react/recommended-type-checked-legacy)plugin:@eslint-react/debug-legacy)plugin:@eslint-react/all-legacy)plugin:@eslint-react/off-legacy)[!IMPORTANT]
These presets are for ESLintFlatConfig(eslint.config.js) only
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A unified plugin that combines all individual plugins from the eslint-react monorepo into one.
The npm package @eslint-react/eslint-plugin receives a total of 368,512 weekly downloads. As such, @eslint-react/eslint-plugin popularity was classified as popular.
We found that @eslint-react/eslint-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.