1.0.23 • Published 9 days ago

eslint-plugin-rxjs-angular-updated v1.0.23

Weekly downloads
-
License
MIT
Repository
github
Last release
9 days ago

This repo is solely meant to update cartant's eslint-plugin-rxjs-angular package to be compatible with eslint v9.

PRs will not be accepted for new features or bug fixes. Reach out to the original maintainer.

npm install eslint-plugin-rxjs-angular-updated

eslint-plugin-rxjs-angular

GitHub License NPM version Downloads Build status dependency status devDependency Status peerDependency Status

This package contains ESLint versions of the Angular/RxJS rules that are in the rxjs-tslint-rules package.

There is no recommended configuration for this package, as all of the rules are opinionated.

Install

Install the ESLint TypeScript parser using npm:

npm install @typescript-eslint/parser --save-dev

Install the package using npm:

npm install eslint-plugin-rxjs-angular --save-dev

Configure the parser and the parserOptions for ESLint. Here, I use a .eslintrc.js file for the configuration:

const { join } = require("path");
module.exports = {
  parser: "@typescript-eslint/parser",
  parserOptions: {
    ecmaVersion: 2019,
    project: join(__dirname, "./tsconfig.json"),
    sourceType: "module"
  },
  plugins: ["rxjs-angular"],
  extends: [],
  rules: {
    "rxjs-angular/prefer-async-pipe": "error"
  }
};

Rules

The package includes the following rules:

RuleDescriptionRecommended
prefer-async-pipeForbids the calling of subscribe within Angular components.No
prefer-compositionForbids subscribe calls that are not composed within Angular components (and, optionally, within services, directives, and pipes).No
prefer-takeuntilForbids Calling subscribe without an accompanying takeUntil.No
1.0.22

16 days ago

1.0.21

23 days ago

1.0.23

9 days ago

1.0.19

1 month ago

1.0.18

1 month ago

1.0.17

1 month ago

1.0.16

2 months ago

1.0.15

2 months ago

1.0.14

2 months ago

1.0.13

2 months ago

1.0.12

2 months ago

1.0.11

2 months ago

1.0.10

2 months ago

1.0.9

3 months ago

1.0.8

3 months ago

1.0.7

3 months ago

1.0.6

3 months ago

1.0.5

4 months ago

1.0.4

4 months ago

1.0.3

4 months ago

1.0.2

4 months ago

1.0.1

4 months ago

1.0.0

4 months ago