Skip to content

Commit 0e5bed9

Browse files
Michael Olukoyaljharb
authored andcommitted
[Docs] no-webpack-loader-syntax: Updates webpack URLs
1 parent a1c969f commit 0e5bed9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
3535
- [`no-duplicates`]: fix fixer on cases with default import ([#1666], thanks [@golopot])
3636
- [`no-unused-modules`]: Handle `export { default } from` syntax ([#1631], thanks [@richardxia])
3737
- [`first`]: Add a way to disable `absolute-first` explicitly ([#1664], thanks [@TheCrueltySage])
38+
- [Docs] `no-webpack-loader-syntax`: Updates webpack URLs ([#1751], thanks [@MikeyBeLike])
3839

3940
## [2.20.1] - 2020-02-01
4041
### Fixed
@@ -689,6 +690,7 @@ for info on changes for earlier releases.
689690
[#1770]: https://github.com/benmosher/eslint-plugin-import/pull/1770
690691
[#1764]: https://github.com/benmosher/eslint-plugin-import/pull/1764
691692
[#1763]: https://github.com/benmosher/eslint-plugin-import/pull/1763
693+
[#1751]: https://github.com/benmosher/eslint-plugin-import/pull/1751
692694
[#1744]: https://github.com/benmosher/eslint-plugin-import/pull/1744
693695
[#1736]: https://github.com/benmosher/eslint-plugin-import/pull/1736
694696
[#1726]: https://github.com/benmosher/eslint-plugin-import/pull/1726
@@ -1177,3 +1179,4 @@ for info on changes for earlier releases.
11771179
[@manuth]: https://github.com/manuth
11781180
[@julien1619]: https://github.com/julien1619
11791181
[@darkartur]: https://github.com/darkartur
1182+
[@MikeyBeLike]: https://github.com/MikeyBeLike

docs/rules/no-webpack-loader-syntax.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
Forbid Webpack loader syntax in imports.
44

5-
[Webpack](http://webpack.github.io) allows specifying the [loaders](http://webpack.github.io/docs/loaders.html) to use in the import source string using a special syntax like this:
5+
[Webpack](https://webpack.js.org) allows specifying the [loaders](https://webpack.js.org/concepts/loaders/) to use in the import source string using a special syntax like this:
66
```js
77
var moduleWithOneLoader = require("my-loader!./my-awesome-module");
88
```
99

10-
This syntax is non-standard, so it couples the code to Webpack. The recommended way to specify Webpack loader configuration is in a [Webpack configuration file](http://webpack.github.io/docs/loaders.html#loaders-by-config).
10+
This syntax is non-standard, so it couples the code to Webpack. The recommended way to specify Webpack loader configuration is in a [Webpack configuration file](https://webpack.js.org/concepts/loaders/#configuration).
1111

1212
## Rule Details
1313

0 commit comments

Comments
 (0)