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
@@ -190,7 +190,7 @@ runtime (allowing some modules to be included more traditionally via script tags
190
190
In the interest of supporting both of these, v0.11 introduces resolvers.
191
191
192
192
Currently [Node] and [webpack] resolution have been implemented, but the
193
-
resolvers are just npm packages, so [third party packages are supported](https://github.com/benmosher/eslint-plugin-import/wiki/Resolvers) (and encouraged!).
193
+
resolvers are just npm packages, so [third party packages are supported](https://github.com/import-js/eslint-plugin-import/wiki/Resolvers) (and encouraged!).
194
194
195
195
You can reference resolvers in several ways (in order of precedence):
This rule was **deprecated** in eslint-plugin-import v2.0.0. Please use the corresponding rule [`first`](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/first.md).
3
+
This rule was **deprecated** in eslint-plugin-import v2.0.0. Please use the corresponding rule [`first`](https://github.com/import-js/eslint-plugin-import/blob/master/docs/rules/first.md).
Copy file name to clipboardexpand all lines: docs/rules/no-duplicates.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ESLint core has a similar rule ([`no-duplicate-imports`](http://eslint.org/docs/
7
7
is different in two key ways:
8
8
9
9
1. the paths in the source code don't have to exactly match, they just have to point to the same module on the filesystem. (i.e. `./foo` and `./foo.js`)
10
-
2. this version distinguishes Flow `type` imports from standard imports. ([#334](https://github.com/benmosher/eslint-plugin-import/pull/334))
10
+
2. this version distinguishes Flow `type` imports from standard imports. ([#334](https://github.com/import-js/eslint-plugin-import/pull/334))
Copy file name to clipboardexpand all lines: docs/rules/no-unused-modules.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Note: dynamic imports are currently not supported.
10
10
11
11
### Usage
12
12
13
-
In order for this plugin to work, one of the options `missingExports` or `unusedExports` must be enabled (see "Options" section below). In the future, these options will be enabled by default (see https://github.com/benmosher/eslint-plugin-import/issues/1324)
13
+
In order for this plugin to work, one of the options `missingExports` or `unusedExports` must be enabled (see "Options" section below). In the future, these options will be enabled by default (see https://github.com/import-js/eslint-plugin-import/issues/1324)
Copy file name to clipboardexpand all lines: docs/rules/no-useless-path-segments.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ import "./pages/index"; // should be "./pages" (auto-fixable)
72
72
import"./pages/index.js"; // should be "./pages" (auto-fixable)
73
73
```
74
74
75
-
Note: `noUselessIndex` only avoids ambiguous imports for `.js` files if you haven't specified other resolved file extensions. See [Settings: import/extensions](https://github.com/benmosher/eslint-plugin-import#importextensions) for details.
75
+
Note: `noUselessIndex` only avoids ambiguous imports for `.js` files if you haven't specified other resolved file extensions. See [Settings: import/extensions](https://github.com/import-js/eslint-plugin-import#importextensions) for details.
0 commit comments