We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 135339c commit 1fa65bdCopy full SHA for 1fa65bd
docs/rules/no-redundant-notify.md
@@ -32,3 +32,15 @@ const subject = new Subject<number>();
32
subject.next(42);
33
subject.error(new Error("Kaboom!"));
34
```
35
+
36
+## When Not To Use It
37
38
+If you don't use a library with effects and epics (e.g. NgRx or redux-observable),
39
+then you don't need this rule.
40
41
+Type checked lint rules are more powerful than traditional lint rules, but also require configuring type checked linting.
42
43
+## Resources
44
45
+- [Rule source](https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/blob/main/src/rules/no-redundant-notify.ts)
46
+- [Test source](https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/blob/main/tests/rules/no-redundant-notify.test.ts)
0 commit comments