Skip to content

Commit b426403

Browse files
docs(recommended): generate docs for changes
1 parent 817341d commit b426403

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,16 +107,16 @@ The package includes the following rules.
107107
| [no-subject-value](docs/rules/no-subject-value.md) | Disallow accessing the `value` property of a `BehaviorSubject` instance. | | | | πŸ’­ | |
108108
| [no-subscribe-handlers](docs/rules/no-subscribe-handlers.md) | Disallow passing handlers to `subscribe`. | | | | πŸ’­ | |
109109
| [no-tap](docs/rules/no-tap.md) | Disallow the `tap` operator. | | | | | ❌ |
110-
| [no-topromise](docs/rules/no-topromise.md) | Disallow use of the `toPromise` method. | πŸ”’ | | πŸ’‘ | πŸ’­ | |
110+
| [no-topromise](docs/rules/no-topromise.md) | Disallow use of the `toPromise` method. | βœ… πŸ”’ | | πŸ’‘ | πŸ’­ | |
111111
| [no-unbound-methods](docs/rules/no-unbound-methods.md) | Disallow passing unbound methods. | βœ… πŸ”’ | | | πŸ’­ | |
112112
| [no-unsafe-catch](docs/rules/no-unsafe-catch.md) | Disallow unsafe `catchError` usage in effects and epics. | | | | πŸ’­ | |
113113
| [no-unsafe-first](docs/rules/no-unsafe-first.md) | Disallow unsafe `first`/`take` usage in effects and epics. | | | | πŸ’­ | |
114114
| [no-unsafe-subject-next](docs/rules/no-unsafe-subject-next.md) | Disallow unsafe optional `next` calls. | βœ… πŸ”’ | | | πŸ’­ | |
115115
| [no-unsafe-switchmap](docs/rules/no-unsafe-switchmap.md) | Disallow unsafe `switchMap` usage in effects and epics. | | | | πŸ’­ | |
116116
| [no-unsafe-takeuntil](docs/rules/no-unsafe-takeuntil.md) | Disallow applying operators after `takeUntil`. | βœ… πŸ”’ | | | πŸ’­ | |
117-
| [prefer-observer](docs/rules/prefer-observer.md) | Disallow passing separate handlers to `subscribe` and `tap`. | πŸ”’ | πŸ”§ | πŸ’‘ | πŸ’­ | |
118-
| [prefer-root-operators](docs/rules/prefer-root-operators.md) | Disallow importing operators from `rxjs/operators`. | πŸ”’ | πŸ”§ | πŸ’‘ | | |
117+
| [prefer-observer](docs/rules/prefer-observer.md) | Disallow passing separate handlers to `subscribe` and `tap`. | βœ… πŸ”’ | πŸ”§ | πŸ’‘ | πŸ’­ | |
118+
| [prefer-root-operators](docs/rules/prefer-root-operators.md) | Disallow importing operators from `rxjs/operators`. | βœ… πŸ”’ | πŸ”§ | πŸ’‘ | | |
119119
| [suffix-subjects](docs/rules/suffix-subjects.md) | Enforce the use of a suffix in subject identifiers. | | | | πŸ’­ | |
120-
| [throw-error](docs/rules/throw-error.md) | Enforce passing only `Error` values to `throwError`. | πŸ”’ | | | πŸ’­ | |
120+
| [throw-error](docs/rules/throw-error.md) | Enforce passing only `Error` values to `throwError`. | βœ… πŸ”’ | | | πŸ’­ | |
121121

122122
<!-- end auto-generated rules list -->

β€Ždocs/rules/no-topromise.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Disallow use of the `toPromise` method (`rxjs-x/no-topromise`)
22

3-
πŸ’Ό This rule is enabled in the πŸ”’ `strict` config.
3+
πŸ’Ό This rule is enabled in the following configs: βœ… `recommended`, πŸ”’ `strict`.
44

55
πŸ’‘ This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
66

β€Ždocs/rules/prefer-observer.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Disallow passing separate handlers to `subscribe` and `tap` (`rxjs-x/prefer-observer`)
22

3-
πŸ’Ό This rule is enabled in the πŸ”’ `strict` config.
3+
πŸ’Ό This rule is enabled in the following configs: βœ… `recommended`, πŸ”’ `strict`.
44

55
πŸ”§πŸ’‘ This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
66

β€Ždocs/rules/prefer-root-operators.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Disallow importing operators from `rxjs/operators` (`rxjs-x/prefer-root-operators`)
22

3-
πŸ’Ό This rule is enabled in the πŸ”’ `strict` config.
3+
πŸ’Ό This rule is enabled in the following configs: βœ… `recommended`, πŸ”’ `strict`.
44

55
πŸ”§πŸ’‘ This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
66

β€Ždocs/rules/throw-error.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Enforce passing only `Error` values to `throwError` (`rxjs-x/throw-error`)
22

3-
πŸ’Ό This rule is enabled in the πŸ”’ `strict` config.
3+
πŸ’Ό This rule is enabled in the following configs: βœ… `recommended`, πŸ”’ `strict`.
44

55
πŸ’­ This rule requires [type information](https://typescript-eslint.io/linting/typed-linting).
66

0 commit comments

Comments
Β (0)