Skip to content

Commit

Permalink
[Docs] make rule doc titles consistent
Browse files Browse the repository at this point in the history
matches other docs pages now, easier for copy/pasting the rule
  • Loading branch information
TheJaredWilcurt authored and ljharb committed Mar 2, 2022
1 parent b0e6f7f commit 747d6dc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -21,6 +21,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
- [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])
- [Docs] [`no-unresolved`]: Fix RegExp escaping in readme ([#2332], thanks [@stephtr])
- [Refactor] `namespace`: try to improve performance ([#2340], thanks [@ljharb])
- [Docs] make rule doc titles consistent ([#2393], thanks [@TheJaredWilcurt])

## [2.25.4] - 2022-01-02

Expand Down Expand Up @@ -971,6 +972,7 @@ for info on changes for earlier releases.

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

[#2393]: https://github.com/import-js/eslint-plugin-import/pull/2393
[#2381]: https://github.com/import-js/eslint-plugin-import/pull/2381
[#2378]: https://github.com/import-js/eslint-plugin-import/pull/2378
[#2371]: https://github.com/import-js/eslint-plugin-import/pull/2371
Expand Down Expand Up @@ -1659,6 +1661,7 @@ for info on changes for earlier releases.
[@Taranys]: https://github.com/Taranys
[@taye]: https://github.com/taye
[@TheCrueltySage]: https://github.com/TheCrueltySage
[@TheJaredWilcurt]: https://github.com/TheJaredWilcurt
[@tihonove]: https://github.com/tihonove
[@timkraut]: https://github.com/timkraut
[@tizmagik]: https://github.com/tizmagik
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/dynamic-import-chunkname.md
@@ -1,4 +1,4 @@
# dynamic imports require a leading comment with a webpackChunkName (dynamic-import-chunkname)
# import/dynamic-import-chunkname

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

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/imports-first.md
@@ -1,3 +1,3 @@
# imports-first
# import/imports-first

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).
2 changes: 1 addition & 1 deletion docs/rules/no-import-module-exports.md
@@ -1,4 +1,4 @@
# no-import-module-exports
# import/no-import-module-exports

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

0 comments on commit 747d6dc

Please sign in to comment.