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 dc1adba commit 442daeeCopy full SHA for 442daee
docs/rules/no-ignored-takewhile-value.md
@@ -24,3 +24,12 @@ import { takeWhile } from "rxjs/operators";
24
25
const whilst = source.pipe(takeWhile(value => value));
26
```
27
+
28
+## When Not To Use It
29
30
+If you don't care about using the given value in a `takeWhile` callback, then you don't need this rule.
31
32
+## Resources
33
34
+- [Rule source](https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/blob/main/src/rules/no-ignored-takewhile-value.ts)
35
+- [Test source](https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/blob/main/tests/rules/no-ignored-takewhile-value.test.ts)
0 commit comments