mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08: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()')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|