Skip to content

Commit 747d6dc

Browse files
TheJaredWilcurtljharb
authored andcommitted
[Docs] make rule doc titles consistent
matches other docs pages now, easier for copy/pasting the rule
1 parent b0e6f7f commit 747d6dc

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
2121
- [Tests] `default`, `no-anonymous-default-export`, `no-mutable-exports`, `no-named-as-default-member`, `no-named-as-default`: add tests for arbitrary module namespace names ([#2358], thanks [@sosukesuzuki])
2222
- [Docs] [`no-unresolved`]: Fix RegExp escaping in readme ([#2332], thanks [@stephtr])
2323
- [Refactor] `namespace`: try to improve performance ([#2340], thanks [@ljharb])
24+
- [Docs] make rule doc titles consistent ([#2393], thanks [@TheJaredWilcurt])
2425

2526
## [2.25.4] - 2022-01-02
2627

@@ -971,6 +972,7 @@ for info on changes for earlier releases.
971972

972973
[`memo-parser`]: ./memo-parser/README.md
973974

975+
[#2393]: https://github.com/import-js/eslint-plugin-import/pull/2393
974976
[#2381]: https://github.com/import-js/eslint-plugin-import/pull/2381
975977
[#2378]: https://github.com/import-js/eslint-plugin-import/pull/2378
976978
[#2371]: https://github.com/import-js/eslint-plugin-import/pull/2371
@@ -1659,6 +1661,7 @@ for info on changes for earlier releases.
16591661
[@Taranys]: https://github.com/Taranys
16601662
[@taye]: https://github.com/taye
16611663
[@TheCrueltySage]: https://github.com/TheCrueltySage
1664+
[@TheJaredWilcurt]: https://github.com/TheJaredWilcurt
16621665
[@tihonove]: https://github.com/tihonove
16631666
[@timkraut]: https://github.com/timkraut
16641667
[@tizmagik]: https://github.com/tizmagik

docs/rules/dynamic-import-chunkname.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# dynamic imports require a leading comment with a webpackChunkName (dynamic-import-chunkname)
1+
# import/dynamic-import-chunkname
22

33
This rule reports any dynamic imports without a webpackChunkName specified in a leading block comment in the proper format.
44

docs/rules/imports-first.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# imports-first
1+
# import/imports-first
22

33
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/HEAD/docs/rules/first.md).

docs/rules/no-import-module-exports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# no-import-module-exports
1+
# import/no-import-module-exports
22

33
Reports the use of import declarations with CommonJS exports in any module
44
except for the [main module](https://docs.npmjs.com/files/package.json#main).

0 commit comments

Comments
 (0)