You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rules/no-explicit-generics.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,13 @@ import { BehaviorSubject } from "rxjs";
20
20
const subject =newBehaviorSubject(42);
21
21
```
22
22
23
-
## Known problems
23
+
## When Not To Use It
24
+
25
+
This rule has known problems in the latest release:
24
26
25
27
- ([#77](https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/issues/77)) Type unions cause false positives e.g. `new BehaviorSubject<number | null>(null)` will be incorrectly caught by this rule.
0 commit comments