Skip to content

Commit be30a34

Browse files
libyljharb
authored andcommitted
[meta] replace git.io link in comments with the original URL
Fixes #2443
1 parent 8399ef4 commit be30a34

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
1616
- [Tests] `named`: Run all TypeScript test ([#2427], thanks [@ProdigySim])
1717
- [readme] note use of typescript in readme `import/extensions` section ([#2440], thanks [@OutdatedVersion])
1818
- [Docs] `order`: use correct default value ([#2392], thanks [@hyperupcall])
19+
- [meta] replace git.io link in comments with the original URL ([#2444], thanks [@liby])
1920

2021
## [2.26.0] - 2022-04-05
2122

@@ -1281,6 +1282,7 @@ for info on changes for earlier releases.
12811282
[#211]: https://github.com/import-js/eslint-plugin-import/pull/211
12821283
[#164]: https://github.com/import-js/eslint-plugin-import/pull/164
12831284
[#157]: https://github.com/import-js/eslint-plugin-import/pull/157
1285+
[#2444]: https://github.com/import-js/eslint-plugin-import/issues/2444
12841286
[#2392]: https://github.com/import-js/eslint-plugin-import/issues/2392
12851287
[#2340]: https://github.com/import-js/eslint-plugin-import/issues/2340
12861288
[#2255]: https://github.com/import-js/eslint-plugin-import/issues/2255

Diff for: tests/src/rules/no-unresolved.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function runResolverTests(resolver) {
6767
options: [{ amd: true }] }),
6868
rest({ code: 'require(["./does-not-exist"], function (bar) {})',
6969
options: [{ amd: false }] }),
70-
// magic modules: https://git.io/vByan
70+
// magic modules: https://github.com/requirejs/requirejs/wiki/Differences-between-the-simplified-CommonJS-wrapper-and-standard-AMD-define#magic-modules
7171
rest({ code: 'define(["require", "exports", "module"], function (r, e, m) { })',
7272
options: [{ amd: true }] }),
7373

Diff for: utils/moduleVisitor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ exports.default = function visitModules(visitor, options) {
8181
if (typeof element.value !== 'string') continue;
8282

8383
if (element.value === 'require' ||
84-
element.value === 'exports') continue; // magic modules: https://git.io/vByan
84+
element.value === 'exports') continue; // magic modules: https://github.com/requirejs/requirejs/wiki/Differences-between-the-simplified-CommonJS-wrapper-and-standard-AMD-define#magic-modules
8585

8686
checkSourceValue(element, element);
8787
}

0 commit comments

Comments
 (0)