Skip to content

Commit 6407c1c

Browse files
libyljharb
authored andcommitted
[Docs] order: update the description of the pathGroupsExcludedImportTypes option
1 parent 4bdf61a commit 6407c1c

File tree

2 files changed

+4
-24
lines changed

2 files changed

+4
-24
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
2626
- [actions] migrate OSX tests to GHA ([ljharb#37], thanks [@aks-])
2727
- [Refactor] `exportMapBuilder`: avoid hoisting ([#2989], thanks [@soryy708])
2828
- [Refactor] `ExportMap`: extract "builder" logic to separate files ([#2991], thanks [@soryy708])
29+
- [Docs] [`order`]: update the description of the `pathGroupsExcludedImportTypes` option ([#3036], thanks [@liby])
2930

3031
## [2.29.1] - 2023-12-14
3132

@@ -1122,6 +1123,7 @@ for info on changes for earlier releases.
11221123

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

1126+
[#3036]: https://github.com/import-js/eslint-plugin-import/pull/3036
11251127
[#3033]: https://github.com/import-js/eslint-plugin-import/pull/3033
11261128
[#3012]: https://github.com/import-js/eslint-plugin-import/pull/3012
11271129
[#3011]: https://github.com/import-js/eslint-plugin-import/pull/3011

docs/rules/order.md

+2-24
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Example:
193193
### `pathGroupsExcludedImportTypes: [array]`
194194

195195
This defines import types that are not handled by configured pathGroups.
196-
This is mostly needed when you want to handle path groups that look like external imports.
196+
If you have added path groups with patterns that look like `"builtin"` or `"external"` imports, you have to remove this group (`"builtin"` and/or `"external"`) from the default exclusion list (e.g., `["builtin", "external", "object"]`, etc) to sort these path groups correctly.
197197

198198
Example:
199199

@@ -212,29 +212,7 @@ Example:
212212
}
213213
```
214214

215-
You can also use `patterns`(e.g., `react`, `react-router-dom`, etc).
216-
217-
Example:
218-
219-
```json
220-
{
221-
"import/order": [
222-
"error",
223-
{
224-
"pathGroups": [
225-
{
226-
"pattern": "react",
227-
"group": "builtin",
228-
"position": "before"
229-
}
230-
],
231-
"pathGroupsExcludedImportTypes": ["react"]
232-
}
233-
]
234-
}
235-
```
236-
237-
The default value is `["builtin", "external", "object"]`.
215+
[Import Type](https://github.com/import-js/eslint-plugin-import/blob/HEAD/src/core/importType.js#L90) is resolved as a fixed string in predefined set, it can't be a `patterns`(e.g., `react`, `react-router-dom`, etc). See [#2156] for details.
238216

239217
### `newlines-between: [ignore|always|always-and-inside-groups|never]`
240218

0 commit comments

Comments
 (0)