An ESLint plugin providing linting rules for Jest tests in React projects. Current stable version is 0.1.0, with low release cadence (last update likely stale). Key differentiator: combines Jest and React specific rules. However, the official community ESLint Jest plugin (eslint-plugin-jest) is more actively maintained and recommended; this plugin may have niche value only for the `no-mocking-react` rule.
npm install eslint-plugin-jest-reactVerified import paths — ran on the pinned version, not inferred.
Shows how to install and configure the plugin in ESLint to lint Jest tests in React projects.
Switch to eslint-plugin-jest and eslint-plugin-testing-library for React testing patterns.
Use ESLint 8 with .eslintrc format, or migrate to flat config with compatible plugins.
Review each rule after extending the recommended config, and disable/override as needed.
Run: yarn add --dev eslint eslint-plugin-jest-react
Use standard severity: 'off', 'warn', or 'error'.
Add 'parserOptions: { sourceType: 'module' }' in ESLint config.