mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
18 lines
435 B
JavaScript
18 lines
435 B
JavaScript
module.exports = {
|
|
meta: {
|
|
docs: {}
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
MemberExpression(node) {
|
|
if (node.property && node.property.name === 'then') {
|
|
context.report(node.property, 'Prefer async/await to Promise.then()')
|
|
} else if (node.property && node.property.name === 'catch') {
|
|
context.report(node.property, 'Prefer async/await to Promise.catch()')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|