1.0.36 • Published 3 months ago

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

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months 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.36

3 months ago

1.0.35

3 months ago

1.0.33

4 months ago

1.0.34

4 months ago

1.0.32

4 months ago

1.0.31

4 months ago

1.0.30

4 months ago

1.0.29

5 months ago

1.0.28

5 months ago

1.0.27

5 months ago

1.0.26

5 months ago

1.0.25

6 months ago

1.0.24

6 months ago

1.0.22

6 months ago

1.0.21

6 months ago

1.0.23

6 months ago

1.0.19

7 months ago

1.0.18

7 months ago

1.0.17

7 months ago

1.0.16

7 months ago

1.0.15

8 months ago

1.0.14

8 months ago

1.0.13

8 months ago

1.0.12

8 months ago

1.0.11

8 months ago

1.0.10

8 months ago

1.0.9

8 months ago

1.0.8

9 months ago

1.0.7

9 months ago

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago