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/named.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Verifies that all named imports are part of the set of named exports in the refe
5
5
For `export`, verifies that all named exports exist in the referenced module.
6
6
7
7
Note: for packages, the plugin will find exported names
8
-
from [`jsnext:main`], if present in `package.json`.
8
+
from [`jsnext:main`] (deprecated) or `module`, if present in `package.json`.
9
9
Redux's npm module includes this key, and thereby is lintable, for example.
10
10
11
11
A module path that is [ignored] or not [unambiguously an ES module] will not be reported when imported. Note that type imports and exports, as used by [Flow], are always ignored.
@@ -91,8 +91,10 @@ runtime, you will likely see false positives with this rule.
0 commit comments