A community fork of cartant's eslint-plugin-rxjs that updates the plugin for compatibility with ESLint v9 and TypeScript 4+. It provides a comprehensive set of ESLint rules for RxJS, including recommended configurations and fixers, but does not accept PRs for new features or bug fixes — users should contact the original maintainer for upstream issues. Current stable version is 1.0.50, with regular weekly dependency updates. The package requires eslint ^9.0.0 and typescript >=4.0.0 as peer dependencies, and ships TypeScript type definitions. It is essentially a drop-in replacement for the original eslint-plugin-rxjs for projects migrating to ESLint 9.
npm install eslint-plugin-rxjs-updatedVerified import paths — ran on the pinned version, not inferred.
Minimal ESLint v9 configuration using the recommended RxJS ruleset with TypeScript parser.
Use eslint-plugin-rxjs (original) for ESLint v8 projects. This fork only supports ESLint v9.
Use 'rxjs' in plugins and extends (e.g., 'plugin:rxjs/recommended').
Report issues to the original eslint-plugin-rxjs repository. Do not expect fixes or new rules here.
Pin version and migrate to original plugin if upstream resolves ESLint v9 compatibility.
Ensure parserOptions.project points to a valid tsconfig.json and update @typescript-eslint/parser to v8+ for ESLint v9.
Ensure eslint-plugin-rxjs-updated is installed. Although the plugin name in ESLint is 'rxjs', the module is found under 'eslint-plugin-rxjs-updated'. Do NOT install eslint-plugin-rxjs separately.
Check the path in parserOptions.project: use join(__dirname, './tsconfig.json') or absolute path.
Add parserOptions.project with path to your tsconfig.json.