Skip to content

Commit 11e65fa

Browse files
committed
docs
1 parent 6a8a976 commit 11e65fa

File tree

4 files changed

+66
-35
lines changed

4 files changed

+66
-35
lines changed

README.md

+2-35
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
ESLint rule that sorts `exports *` with autofix enabled
77

8-
![Example](./example.gif)
8+
![Example](docs/sort-export-all.gif)
99

1010
[Rules List](./src/rules)
1111

@@ -40,40 +40,7 @@ export default [
4040
];
4141
```
4242

43-
## Rule configuration
44-
45-
- The 1st option is `"asc"` or `"desc"`.
46-
47-
`"asc"` (default) - enforce properties to be in ascending order.
48-
49-
`"desc"` - enforce properties to be in descending order.
50-
51-
- The 2nd option is an object which has 3 properties.
52-
53-
`caseSensitive` - if `true`, enforce properties to be in case-sensitive order. Default is `true`.
54-
55-
`natural` - if `true`, enforce properties to be in natural order. Default is false. Natural Order compares strings containing a combination of letters and numbers in the way a human being would sort. It basically sorts numerically, instead of sorting alphabetically. So the number 10 comes after the number `3` in Natural Sorting.
56-
57-
```
58-
Standard sorting: Natural order sorting:
59-
img1.png img1.png
60-
img10.png img2.png
61-
img12.png img10.png
62-
img2.png img12.png
63-
```
64-
65-
The default config is
66-
67-
```javascript
68-
[
69-
"warn",
70-
"asc",
71-
{
72-
caseSensitive: true,
73-
natural: false,
74-
},
75-
];
76-
```
43+
[Rules List](./src/rules)
7744

7845
## License
7946

docs/default-import-name-demo.gif

-4.16 MB
Binary file not shown.
File renamed without changes.

src/rules/sort-export-all.md

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# sort-export-all
2+
3+
ESLint rule that sorts `exports *` with autofix enabled
4+
5+
💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/nirtamir2/eslint-plugin-sort-destructure-keys-typescript/blob/main/src/config.ts).
6+
7+
🔧💡 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
8+
9+
![sort-export-all.gif](../../docs/sort-export-all.gif)
10+
11+
## Rule Details
12+
13+
<!-- eslint-skip -->
14+
15+
```js
16+
// 👎 Bad
17+
export * from "./a";
18+
export * from "./b";
19+
```
20+
21+
<!-- eslint-skip -->
22+
23+
```js
24+
// 👍 Good
25+
export * from "./b";
26+
export * from "./a";
27+
```
28+
29+
## Rule configuration
30+
31+
- The 1st option is `"asc"` or `"desc"`.
32+
33+
`"asc"` (default) - enforce properties to be in ascending order.
34+
35+
`"desc"` - enforce properties to be in descending order.
36+
37+
- The 2nd option is an object which has 3 properties.
38+
39+
`caseSensitive` - if `true`, enforce properties to be in case-sensitive order. Default is `true`.
40+
41+
`natural` - if `true`, enforce properties to be in natural order. Default is false. Natural Order compares strings containing a combination of letters and numbers in the way a human being would sort. It basically sorts numerically, instead of sorting alphabetically. So the number 10 comes after the number `3` in Natural Sorting.
42+
43+
```
44+
45+
Standard sorting: Natural order sorting:
46+
img1.png img1.png
47+
img10.png img2.png
48+
img12.png img10.png
49+
img2.png img12.png
50+
51+
```
52+
53+
The default config is
54+
55+
```javascript
56+
[
57+
"warn",
58+
"asc",
59+
{
60+
caseSensitive: true,
61+
natural: false,
62+
},
63+
];
64+
```

0 commit comments

Comments
 (0)