-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathprefer-async-await.js
62 lines (53 loc) · 1.25 KB
/
prefer-async-await.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
61
62
'use strict';
const {visitIf} = require('enhance-visitors');
const createAvaRule = require('../create-ava-rule');
const util = require('../util');
function containsThen(node) {
if (!node
|| node.type !== 'CallExpression'
|| node.callee.type !== 'MemberExpression'
) {
return false;
}
const {callee} = node;
if (callee.property.type === 'Identifier'
&& callee.property.name === 'then'
) {
return true;
}
return containsThen(callee.object);
}
const create = context => {
const ava = createAvaRule();
const check = visitIf([
ava.isInTestFile,
ava.isInTestNode,
])(node => {
if (node.body.type !== 'BlockStatement') {
return;
}
const statements = node.body.body;
const returnStatement = statements.find(statement => statement.type === 'ReturnStatement');
if (returnStatement && containsThen(returnStatement.argument)) {
context.report({
node,
message: 'Prefer using async/await instead of returning a Promise.',
});
}
});
return ava.merge({
ArrowFunctionExpression: check,
FunctionExpression: check,
});
};
module.exports = {
create,
meta: {
type: 'suggestion',
docs: {
description: 'Prefer using async/await instead of returning a Promise.',
url: util.getDocsUrl(__filename),
},
schema: [],
},
};