Skip to content

Commit f1ae2d6

Browse files
committed
[Docs] describe the new options
1 parent 529734c commit f1ae2d6

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

docs/rules/order.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -285,14 +285,23 @@ import index from './';
285285
import sibling from './foo';
286286
```
287287

288-
### `named: true|false`
288+
### `named: true|false|{enabled: true|false, import: true|false, export: true|false, require: true|false, groups: [array]}`
289289

290290
Enforce ordering of names within imports:
291291

292292
- If set to `true`, named imports must be ordered according to the `alphabetize` options
293293
- If set to `false`, named imports can occur in any order
294294

295-
The default value is `false`
295+
`import`, `export` and `require` allows forcing ordering of named `import`s/`export`s for the corresponding kind of expression.
296+
Use `enabled` to force ordering all of the aforementioned groups.
297+
298+
The `groups` option allows to specify the order of the following kind of named `import`/`export` expressions:
299+
300+
- `value`: Importing/exporting ordinary values
301+
- `default`: Exporting the `default` member in an expression like `export { default as Console } from './my-awesome-console.js'`
302+
- `type`: Explicitly importing or exporting types: `import { type Readline } from 'node:readline'`
303+
304+
The default value is `false` and the default `groups`-option is `['default']`.
296305

297306
Example setting:
298307

0 commit comments

Comments
 (0)