
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@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 524,440 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.