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 afd8ecf commit 22fa1b8Copy full SHA for 22fa1b8
docs/rules/no-internal.md
@@ -21,3 +21,18 @@ Examples of **correct** code for this rule:
21
```ts
22
import { of } from "rxjs";
23
```
24
+
25
+## When Not To Use It
26
27
+If you need to import internal modules that are not covered by the public API,
28
+then you don't need this rule.
29
+However, keep in mind that internal modules may change without notice.
30
31
+## Further reading
32
33
+- [Importing instructions](https://rxjs.dev/guide/importing)
34
35
+## Resources
36
37
+- [Rule source](https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/blob/main/src/rules/no-internal.ts)
38
+- [Test source](https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/blob/main/tests/rules/no-internal.test.ts)
0 commit comments