Skip to content

Commit 794e869

Browse files
committedAug 8, 2021
[meta] update repo URLs
1 parent 429f3f6 commit 794e869

25 files changed

+534
-534
lines changed
 

‎.github/workflows/node-4+.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
versionsAsRoot: true
1616
type: majors
17-
preset: '>= 6' # preset: '>=4' # see https://github.com/benmosher/eslint-plugin-import/issues/2053
17+
preset: '>= 6' # preset: '>=4' # see https://github.com/import-js/eslint-plugin-import/issues/2053
1818

1919
latest:
2020
needs: [matrix]

‎.github/workflows/packages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
id: set-matrix
1414
with:
1515
type: 'majors'
16-
preset: '>= 6' # preset: '>=4' # see https://github.com/benmosher/eslint-plugin-import/issues/2053
16+
preset: '>= 6' # preset: '>=4' # see https://github.com/import-js/eslint-plugin-import/issues/2053
1717
versionsAsRoot: true
1818

1919
tests:

‎CHANGELOG.md

+436-436
Large diffs are not rendered by default.

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# eslint-plugin-import
22

3-
[![build status](https://travis-ci.org/benmosher/eslint-plugin-import.svg?branch=master)](https://travis-ci.org/benmosher/eslint-plugin-import)
4-
[![Coverage Status](https://coveralls.io/repos/github/benmosher/eslint-plugin-import/badge.svg?branch=master)](https://coveralls.io/github/benmosher/eslint-plugin-import?branch=master)
5-
[![win32 build status](https://ci.appveyor.com/api/projects/status/3mw2fifalmjlqf56/branch/master?svg=true)](https://ci.appveyor.com/project/benmosher/eslint-plugin-import/branch/master)
3+
[![build status](https://travis-ci.org/import-js/eslint-plugin-import.svg?branch=master)](https://travis-ci.org/import-js/eslint-plugin-import)
4+
[![Coverage Status](https://coveralls.io/repos/github/import-js/eslint-plugin-import/badge.svg?branch=master)](https://coveralls.io/github/import-js/eslint-plugin-import?branch=master)
5+
[![win32 build status](https://ci.appveyor.com/api/projects/status/3mw2fifalmjlqf56/branch/master?svg=true)](https://ci.appveyor.com/project/import-js/eslint-plugin-import/branch/master)
66
[![npm](https://img.shields.io/npm/v/eslint-plugin-import.svg)](https://www.npmjs.com/package/eslint-plugin-import)
77
[![npm downloads](https://img.shields.io/npm/dt/eslint-plugin-import.svg?maxAge=2592000)](http://www.npmtrends.com/eslint-plugin-import)
88

@@ -190,7 +190,7 @@ runtime (allowing some modules to be included more traditionally via script tags
190190
In the interest of supporting both of these, v0.11 introduces resolvers.
191191

192192
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!).
194194

195195
You can reference resolvers in several ways (in order of precedence):
196196

‎RELEASE.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
at last version's tag.
1414

1515
```markdown
16-
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.1...HEAD
17-
[2.0.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.0...v2.0.1
16+
[Unreleased]: https://github.com/import-js/eslint-plugin-import/compare/v2.0.1...HEAD
17+
[2.0.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.0.0...v2.0.1
1818
```
1919

2020
becomes
2121

2222
```markdown
23-
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.1.0...HEAD
24-
[2.1.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.1...v2.1.0
25-
[2.0.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.0.0...v2.0.1
23+
[Unreleased]: https://github.com/import-js/eslint-plugin-import/compare/v2.1.0...HEAD
24+
[2.1.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.0.1...v2.1.0
25+
[2.0.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.0.0...v2.0.1
2626
```
2727

2828
Generally, don't use `npm version` for this because it creates a tag, which I normally

‎docs/rules/first.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ enable this rule.
6767
- Issue [#255]
6868

6969
[`import/order`]: ./order.md
70-
[#255]: https://github.com/benmosher/eslint-plugin-import/issues/255
70+
[#255]: https://github.com/import-js/eslint-plugin-import/issues/255

‎docs/rules/imports-first.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# imports-first
22

3-
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).

‎docs/rules/no-cycle.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ this rule enabled.
8383

8484
## Further Reading
8585

86-
- [Original inspiring issue](https://github.com/benmosher/eslint-plugin-import/issues/941)
86+
- [Original inspiring issue](https://github.com/import-js/eslint-plugin-import/issues/941)
8787
- Rule to detect that module imports itself: [`no-self-import`]
8888
- [`import/external-module-folders`] setting
8989

‎docs/rules/no-duplicates.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ESLint core has a similar rule ([`no-duplicate-imports`](http://eslint.org/docs/
77
is different in two key ways:
88

99
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))
1111

1212
## Rule Details
1313

‎docs/rules/no-unused-modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Note: dynamic imports are currently not supported.
1010

1111
### Usage
1212

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)
1414

1515
Example:
1616
```

‎docs/rules/no-useless-path-segments.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ import "./pages/index"; // should be "./pages" (auto-fixable)
7272
import "./pages/index.js"; // should be "./pages" (auto-fixable)
7373
```
7474

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.
7676

7777
### commonjs
7878

‎memo-parser/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "git+https://github.com/benmosher/eslint-plugin-import.git"
15+
"url": "git+https://github.com/import-js/eslint-plugin-import.git"
1616
},
1717
"keywords": [
1818
"eslint",
@@ -22,9 +22,9 @@
2222
"author": "Ben Mosher (me@benmosher.com)",
2323
"license": "MIT",
2424
"bugs": {
25-
"url": "https://github.com/benmosher/eslint-plugin-import/issues"
25+
"url": "https://github.com/import-js/eslint-plugin-import/issues"
2626
},
27-
"homepage": "https://github.com/benmosher/eslint-plugin-import#readme",
27+
"homepage": "https://github.com/import-js/eslint-plugin-import#readme",
2828
"peerDependencies": {
2929
"eslint": ">=3.5.0"
3030
},

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
},
3737
"repository": {
3838
"type": "git",
39-
"url": "https://github.com/benmosher/eslint-plugin-import"
39+
"url": "https://github.com/import-js/eslint-plugin-import"
4040
},
4141
"keywords": [
4242
"eslint",
@@ -50,9 +50,9 @@
5050
"author": "Ben Mosher <me@benmosher.com>",
5151
"license": "MIT",
5252
"bugs": {
53-
"url": "https://github.com/benmosher/eslint-plugin-import/issues"
53+
"url": "https://github.com/import-js/eslint-plugin-import/issues"
5454
},
55-
"homepage": "https://github.com/benmosher/eslint-plugin-import",
55+
"homepage": "https://github.com/import-js/eslint-plugin-import",
5656
"devDependencies": {
5757
"@eslint/import-test-order-redirect-scoped": "file:./tests/files/order-redirect-scoped",
5858
"@test-scope/some-module": "file:./tests/files/symlinked-module",

‎resolvers/node/CHANGELOG.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
5151
### Fixed
5252
- find files with `.json` extensions (#333, thanks for noticing @jfmengels)
5353

54-
[#2166]: https://github.com/benmosher/eslint-plugin-import/pull/2166
55-
[#438]: https://github.com/benmosher/eslint-plugin-import/pull/438
56-
57-
[#1663]: https://github.com/benmosher/eslint-plugin-import/issues/1663
58-
[#1595]: https://github.com/benmosher/eslint-plugin-import/pull/1595
59-
[#939]: https://github.com/benmosher/eslint-plugin-import/issues/939
60-
[#531]: https://github.com/benmosher/eslint-plugin-import/issues/531
61-
[#437]: https://github.com/benmosher/eslint-plugin-import/issues/437
54+
[#2166]: https://github.com/import-js/eslint-plugin-import/pull/2166
55+
[#438]: https://github.com/import-js/eslint-plugin-import/pull/438
56+
57+
[#1663]: https://github.com/import-js/eslint-plugin-import/issues/1663
58+
[#1595]: https://github.com/import-js/eslint-plugin-import/pull/1595
59+
[#939]: https://github.com/import-js/eslint-plugin-import/issues/939
60+
[#531]: https://github.com/import-js/eslint-plugin-import/issues/531
61+
[#437]: https://github.com/import-js/eslint-plugin-import/issues/437
6262

6363
[@jasonkarns]: https://github.com/jasonkarns
6464
[@lukeapage]: https://github.com/lukeapage

‎resolvers/node/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/benmosher/eslint-plugin-import"
17+
"url": "https://github.com/import-js/eslint-plugin-import"
1818
},
1919
"keywords": [
2020
"eslint",
@@ -26,9 +26,9 @@
2626
"author": "Ben Mosher (me@benmosher.com)",
2727
"license": "MIT",
2828
"bugs": {
29-
"url": "https://github.com/benmosher/eslint-plugin-import/issues"
29+
"url": "https://github.com/import-js/eslint-plugin-import/issues"
3030
},
31-
"homepage": "https://github.com/benmosher/eslint-plugin-import",
31+
"homepage": "https://github.com/import-js/eslint-plugin-import",
3232
"dependencies": {
3333
"debug": "^3.2.7",
3434
"resolve": "^1.20.0"

‎resolvers/webpack/CHANGELOG.md

+35-35
Original file line numberDiff line numberDiff line change
@@ -150,41 +150,41 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
150150
- `interpret` configs (such as `.babel.js`).
151151
Thanks to [@gausie] for the initial PR ([#164], ages ago! 😅) and [@jquense] for tests ([#278]).
152152

153-
[#2023]: https://github.com/benmosher/eslint-plugin-import/pull/2023
154-
[#1967]: https://github.com/benmosher/eslint-plugin-import/pull/1967
155-
[#1962]: https://github.com/benmosher/eslint-plugin-import/pull/1962
156-
[#1705]: https://github.com/benmosher/eslint-plugin-import/pull/1705
157-
[#1595]: https://github.com/benmosher/eslint-plugin-import/pull/1595
158-
[#1503]: https://github.com/benmosher/eslint-plugin-import/pull/1503
159-
[#1297]: https://github.com/benmosher/eslint-plugin-import/pull/1297
160-
[#1261]: https://github.com/benmosher/eslint-plugin-import/pull/1261
161-
[#1220]: https://github.com/benmosher/eslint-plugin-import/pull/1220
162-
[#1091]: https://github.com/benmosher/eslint-plugin-import/pull/1091
163-
[#969]: https://github.com/benmosher/eslint-plugin-import/pull/969
164-
[#968]: https://github.com/benmosher/eslint-plugin-import/pull/968
165-
[#768]: https://github.com/benmosher/eslint-plugin-import/pull/768
166-
[#683]: https://github.com/benmosher/eslint-plugin-import/pull/683
167-
[#572]: https://github.com/benmosher/eslint-plugin-import/pull/572
168-
[#569]: https://github.com/benmosher/eslint-plugin-import/pull/569
169-
[#533]: https://github.com/benmosher/eslint-plugin-import/pull/533
170-
[#413]: https://github.com/benmosher/eslint-plugin-import/pull/413
171-
[#377]: https://github.com/benmosher/eslint-plugin-import/pull/377
172-
[#363]: https://github.com/benmosher/eslint-plugin-import/pull/363
173-
[#289]: https://github.com/benmosher/eslint-plugin-import/pull/289
174-
[#287]: https://github.com/benmosher/eslint-plugin-import/pull/287
175-
[#278]: https://github.com/benmosher/eslint-plugin-import/pull/278
176-
[#181]: https://github.com/benmosher/eslint-plugin-import/pull/181
177-
[#164]: https://github.com/benmosher/eslint-plugin-import/pull/164
178-
179-
[#1219]: https://github.com/benmosher/eslint-plugin-import/issues/1219
180-
[#788]: https://github.com/benmosher/eslint-plugin-import/issues/788
181-
[#767]: https://github.com/benmosher/eslint-plugin-import/issues/767
182-
[#681]: https://github.com/benmosher/eslint-plugin-import/issues/681
183-
[#435]: https://github.com/benmosher/eslint-plugin-import/issues/435
184-
[#411]: https://github.com/benmosher/eslint-plugin-import/issues/411
185-
[#357]: https://github.com/benmosher/eslint-plugin-import/issues/357
186-
[#286]: https://github.com/benmosher/eslint-plugin-import/issues/286
187-
[#283]: https://github.com/benmosher/eslint-plugin-import/issues/283
153+
[#2023]: https://github.com/import-js/eslint-plugin-import/pull/2023
154+
[#1967]: https://github.com/import-js/eslint-plugin-import/pull/1967
155+
[#1962]: https://github.com/import-js/eslint-plugin-import/pull/1962
156+
[#1705]: https://github.com/import-js/eslint-plugin-import/pull/1705
157+
[#1595]: https://github.com/import-js/eslint-plugin-import/pull/1595
158+
[#1503]: https://github.com/import-js/eslint-plugin-import/pull/1503
159+
[#1297]: https://github.com/import-js/eslint-plugin-import/pull/1297
160+
[#1261]: https://github.com/import-js/eslint-plugin-import/pull/1261
161+
[#1220]: https://github.com/import-js/eslint-plugin-import/pull/1220
162+
[#1091]: https://github.com/import-js/eslint-plugin-import/pull/1091
163+
[#969]: https://github.com/import-js/eslint-plugin-import/pull/969
164+
[#968]: https://github.com/import-js/eslint-plugin-import/pull/968
165+
[#768]: https://github.com/import-js/eslint-plugin-import/pull/768
166+
[#683]: https://github.com/import-js/eslint-plugin-import/pull/683
167+
[#572]: https://github.com/import-js/eslint-plugin-import/pull/572
168+
[#569]: https://github.com/import-js/eslint-plugin-import/pull/569
169+
[#533]: https://github.com/import-js/eslint-plugin-import/pull/533
170+
[#413]: https://github.com/import-js/eslint-plugin-import/pull/413
171+
[#377]: https://github.com/import-js/eslint-plugin-import/pull/377
172+
[#363]: https://github.com/import-js/eslint-plugin-import/pull/363
173+
[#289]: https://github.com/import-js/eslint-plugin-import/pull/289
174+
[#287]: https://github.com/import-js/eslint-plugin-import/pull/287
175+
[#278]: https://github.com/import-js/eslint-plugin-import/pull/278
176+
[#181]: https://github.com/import-js/eslint-plugin-import/pull/181
177+
[#164]: https://github.com/import-js/eslint-plugin-import/pull/164
178+
179+
[#1219]: https://github.com/import-js/eslint-plugin-import/issues/1219
180+
[#788]: https://github.com/import-js/eslint-plugin-import/issues/788
181+
[#767]: https://github.com/import-js/eslint-plugin-import/issues/767
182+
[#681]: https://github.com/import-js/eslint-plugin-import/issues/681
183+
[#435]: https://github.com/import-js/eslint-plugin-import/issues/435
184+
[#411]: https://github.com/import-js/eslint-plugin-import/issues/411
185+
[#357]: https://github.com/import-js/eslint-plugin-import/issues/357
186+
[#286]: https://github.com/import-js/eslint-plugin-import/issues/286
187+
[#283]: https://github.com/import-js/eslint-plugin-import/issues/283
188188

189189
[@gausie]: https://github.com/gausie
190190
[@jquense]: https://github.com/jquense

‎resolvers/webpack/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"repository": {
1818
"type": "git",
19-
"url": "git+https://github.com/benmosher/eslint-plugin-import.git"
19+
"url": "git+https://github.com/import-js/eslint-plugin-import.git"
2020
},
2121
"keywords": [
2222
"eslint-plugin-import",
@@ -28,9 +28,9 @@
2828
"author": "Ben Mosher (me@benmosher.com)",
2929
"license": "MIT",
3030
"bugs": {
31-
"url": "https://github.com/benmosher/eslint-plugin-import/issues"
31+
"url": "https://github.com/import-js/eslint-plugin-import/issues"
3232
},
33-
"homepage": "https://github.com/benmosher/eslint-plugin-import/tree/master/resolvers/webpack",
33+
"homepage": "https://github.com/import-js/eslint-plugin-import/tree/master/resolvers/webpack",
3434
"dependencies": {
3535
"array-find": "^1.0.0",
3636
"debug": "^3.2.7",

‎src/docsUrl.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pkg from '../package.json';
22

3-
const repoUrl = 'https://github.com/benmosher/eslint-plugin-import';
3+
const repoUrl = 'https://github.com/import-js/eslint-plugin-import';
44

55
export default function docsUrl(ruleName, commitish = `v${pkg.version}`) {
66
return `${repoUrl}/blob/${commitish}/docs/rules/${ruleName}.md`;

‎tests/src/config/typescript.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { expect } from 'chai';
44
const config = require(path.join(__dirname, '..', '..', '..', 'config', 'typescript'));
55

66
describe('config typescript', () => {
7-
// https://github.com/benmosher/eslint-plugin-import/issues/1525
7+
// https://github.com/import-js/eslint-plugin-import/issues/1525
88
it('should mark @types paths as external', () => {
99
const externalModuleFolders = config.settings['import/external-module-folders'];
1010
expect(externalModuleFolders).to.exist;

‎tests/src/core/docsUrl.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import docsUrl from '../../../src/docsUrl';
55

66
describe('docsUrl', function () {
77
it('returns the rule documentation URL when given a rule name', function () {
8-
expect(docsUrl('foo')).to.equal(`https://github.com/benmosher/eslint-plugin-import/blob/v${pkg.version}/docs/rules/foo.md`);
8+
expect(docsUrl('foo')).to.equal(`https://github.com/import-js/eslint-plugin-import/blob/v${pkg.version}/docs/rules/foo.md`);
99
});
1010

1111
it('supports an optional commit-ish parameter', function () {
12-
expect(docsUrl('foo', 'bar')).to.equal('https://github.com/benmosher/eslint-plugin-import/blob/bar/docs/rules/foo.md');
12+
expect(docsUrl('foo', 'bar')).to.equal('https://github.com/import-js/eslint-plugin-import/blob/bar/docs/rules/foo.md');
1313
});
1414
});

‎tests/src/rules/no-unresolved.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ ruleTester.run('no-unresolved syntax verification', rule, {
398398
invalid:[],
399399
});
400400

401-
// https://github.com/benmosher/eslint-plugin-import/issues/2024
401+
// https://github.com/import-js/eslint-plugin-import/issues/2024
402402
ruleTester.run('import() with built-in parser', rule, {
403403
valid: [].concat(
404404
testVersion('>=7', () => ({

‎tests/src/rules/order.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ ruleTester.run('order', rule, {
343343
],
344344
}],
345345
}),
346-
// Using pathGroups (a test case for https://github.com/benmosher/eslint-plugin-import/pull/1724)
346+
// Using pathGroups (a test case for https://github.com/import-js/eslint-plugin-import/pull/1724)
347347
test({
348348
code: `
349349
import fs from 'fs';

‎utils/CHANGELOG.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -85,22 +85,22 @@ Yanked due to critical issue with cache key resulting from #839.
8585
### Fixed
8686
- `unambiguous.test()` regex is now properly in multiline mode
8787

88-
[#2026]: https://github.com/benmosher/eslint-plugin-import/pull/2026
89-
[#1786]: https://github.com/benmosher/eslint-plugin-import/pull/1786
90-
[#1671]: https://github.com/benmosher/eslint-plugin-import/pull/1671
91-
[#1606]: https://github.com/benmosher/eslint-plugin-import/pull/1606
92-
[#1602]: https://github.com/benmosher/eslint-plugin-import/pull/1602
93-
[#1591]: https://github.com/benmosher/eslint-plugin-import/pull/1591
94-
[#1551]: https://github.com/benmosher/eslint-plugin-import/pull/1551
95-
[#1435]: https://github.com/benmosher/eslint-plugin-import/pull/1435
96-
[#1409]: https://github.com/benmosher/eslint-plugin-import/pull/1409
97-
[#1356]: https://github.com/benmosher/eslint-plugin-import/pull/1356
98-
[#1290]: https://github.com/benmosher/eslint-plugin-import/pull/1290
99-
[#1218]: https://github.com/benmosher/eslint-plugin-import/pull/1218
100-
[#1166]: https://github.com/benmosher/eslint-plugin-import/issues/1166
101-
[#1160]: https://github.com/benmosher/eslint-plugin-import/pull/1160
102-
[#1035]: https://github.com/benmosher/eslint-plugin-import/issues/1035
103-
[#599]: https://github.com/benmosher/eslint-plugin-import/pull/599
88+
[#2026]: https://github.com/import-js/eslint-plugin-import/pull/2026
89+
[#1786]: https://github.com/import-js/eslint-plugin-import/pull/1786
90+
[#1671]: https://github.com/import-js/eslint-plugin-import/pull/1671
91+
[#1606]: https://github.com/import-js/eslint-plugin-import/pull/1606
92+
[#1602]: https://github.com/import-js/eslint-plugin-import/pull/1602
93+
[#1591]: https://github.com/import-js/eslint-plugin-import/pull/1591
94+
[#1551]: https://github.com/import-js/eslint-plugin-import/pull/1551
95+
[#1435]: https://github.com/import-js/eslint-plugin-import/pull/1435
96+
[#1409]: https://github.com/import-js/eslint-plugin-import/pull/1409
97+
[#1356]: https://github.com/import-js/eslint-plugin-import/pull/1356
98+
[#1290]: https://github.com/import-js/eslint-plugin-import/pull/1290
99+
[#1218]: https://github.com/import-js/eslint-plugin-import/pull/1218
100+
[#1166]: https://github.com/import-js/eslint-plugin-import/issues/1166
101+
[#1160]: https://github.com/import-js/eslint-plugin-import/pull/1160
102+
[#1035]: https://github.com/import-js/eslint-plugin-import/issues/1035
103+
[#599]: https://github.com/import-js/eslint-plugin-import/pull/599
104104

105105
[@hulkish]: https://github.com/hulkish
106106
[@timkraut]: https://github.com/timkraut

‎utils/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"repository": {
1313
"type": "git",
14-
"url": "git+https://github.com/benmosher/eslint-plugin-import.git"
14+
"url": "git+https://github.com/import-js/eslint-plugin-import.git"
1515
},
1616
"keywords": [
1717
"eslint-plugin-import",
@@ -22,9 +22,9 @@
2222
"author": "Ben Mosher <me@benmosher.com>",
2323
"license": "MIT",
2424
"bugs": {
25-
"url": "https://github.com/benmosher/eslint-plugin-import/issues"
25+
"url": "https://github.com/import-js/eslint-plugin-import/issues"
2626
},
27-
"homepage": "https://github.com/benmosher/eslint-plugin-import#readme",
27+
"homepage": "https://github.com/import-js/eslint-plugin-import#readme",
2828
"dependencies": {
2929
"debug": "^3.2.7",
3030
"pkg-dir": "^2.0.0"

‎utils/parse.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ exports.default = function parse(path, content, context) {
3535
// @typescript-eslint/parser will parse the entire project with typechecking if you provide
3636
// "project" or "projects" in parserOptions. Removing these options means the parser will
3737
// only parse one file in isolate mode, which is much, much faster.
38-
// https://github.com/benmosher/eslint-plugin-import/issues/1408#issuecomment-509298962
38+
// https://github.com/import-js/eslint-plugin-import/issues/1408#issuecomment-509298962
3939
delete parserOptions.project;
4040
delete parserOptions.projects;
4141

0 commit comments

Comments
 (0)
Please sign in to comment.