-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathavoid-reverse.js
60 lines (57 loc) · 1.96 KB
/
avoid-reverse.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* @license MIT
* @author Martin Giger
*/
import { isMethod } from "../lib/helpers/call-expression.js";
const REPLACEMENTS = {
reduce: "reduceRight",
reduceRight: "reduce",
};
export default {
meta: {
docs: {
description: "Prefer methods operating from the right over reversing the array",
recommended: true,
},
schema: [],
fixable: "code",
type: "suggestion",
messages: {
avoidReverse: "Prefer using {{ reversed }} over reversing the array and {{ methodName }}",
},
},
create(context) {
return {
'CallExpression[callee.type="MemberExpression"] > MemberExpression > CallExpression[callee.property.name="reverse"]'(node) {
const parent = node;
node = parent.parent.parent;
if(Object.keys(REPLACEMENTS).every((m) => !isMethod(node, m))) {
return;
}
const reversed = REPLACEMENTS[node.callee.property.name];
context.report({
node: node.callee.property,
loc: {
start: parent.callee.property.loc.start,
end: node.callee.property.loc.end,
},
messageId: "avoidReverse",
data: {
reversed,
methodName: node.callee.property.name,
},
fix(fixer) {
const [ propertyStart ] = parent.callee.property.range,
[
, propertyEnd,
] = node.callee.property.range;
return fixer.replaceTextRange([
propertyStart,
propertyEnd,
], reversed);
},
});
},
};
},
};