Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2dfb80c

Browse files
committedJan 11, 2025·
rm types from sort-keys because it makes dist grumpy
1 parent a1328df commit 2dfb80c

File tree

1 file changed

+8
-23
lines changed

1 file changed

+8
-23
lines changed
 

‎src/rules/sort-keys.js

+8-23
Original file line numberDiff line numberDiff line change
@@ -3,47 +3,35 @@
33
* @author Robin Thomas
44
*/
55

6-
/**
7-
* @typedef {import("@humanwhocodes/momoa").MemberNode} MemberNode
8-
* @typedef {import("@humanwhocodes/momoa").ObjectNode} ObjectNode
9-
* @typedef {(a: string, b:string) => boolean} Comparator
10-
*/
11-
126
import naturalCompare from "natural-compare";
137

148
const comparators = {
159
ascending: {
1610
alphanumeric: {
17-
sensitive: /** @type {Comparator} **/ (a, b) => a <= b,
18-
insensitive: /** @type {Comparator} **/ (a, b) =>
19-
a.toLowerCase() <= b.toLowerCase(),
11+
sensitive: (a, b) => a <= b,
12+
insensitive: (a, b) => a.toLowerCase() <= b.toLowerCase(),
2013
},
2114
natural: {
22-
sensitive: /** @type {Comparator} **/ (a, b) =>
23-
naturalCompare(a, b) <= 0,
24-
insensitive: /** @type {Comparator} **/ (a, b) =>
15+
sensitive: (a, b) => naturalCompare(a, b) <= 0,
16+
insensitive: (a, b) =>
2517
naturalCompare(a.toLowerCase(), b.toLowerCase()) <= 0,
2618
},
2719
},
2820
descending: {
2921
alphanumeric: {
30-
sensitive: /** @type {Comparator} **/ (a, b) =>
22+
sensitive: (a, b) =>
3123
comparators.ascending.alphanumeric.sensitive(b, a),
32-
insensitive: /** @type {Comparator} **/ (a, b) =>
24+
insensitive: (a, b) =>
3325
comparators.ascending.alphanumeric.insensitive(b, a),
3426
},
3527
natural: {
36-
sensitive: /** @type {Comparator} **/ (a, b) =>
37-
comparators.ascending.natural.sensitive(b, a),
38-
insensitive: /** @type {Comparator} **/ (a, b) =>
28+
sensitive: (a, b) => comparators.ascending.natural.sensitive(b, a),
29+
insensitive: (a, b) =>
3930
comparators.ascending.natural.insensitive(b, a),
4031
},
4132
},
4233
};
4334

44-
/**
45-
* @param {MemberNode} member
46-
*/
4735
function getKey(member) {
4836
return member.name.type === `Identifier`
4937
? member.name.name
@@ -118,9 +106,6 @@ export default {
118106
}
119107

120108
return {
121-
/**
122-
* @param {ObjectNode} node
123-
*/
124109
Object(node) {
125110
let prevMember;
126111
let prevName;

0 commit comments

Comments
 (0)
Please sign in to comment.