mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
23 lines
622 B
JavaScript
23 lines
622 B
JavaScript
module.exports = {
|
|
meta: {
|
|
type: 'suggestion',
|
|
docs: {
|
|
description: 'enforce using `async/await` syntax over Promises',
|
|
url: require('../url')(module)
|
|
},
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
MemberExpression(node) {
|
|
if (node.property && node.property.name === 'then') {
|
|
context.report({node: node.property, message: 'Prefer async/await to Promise.then()'})
|
|
} else if (node.property && node.property.name === 'catch') {
|
|
context.report({node: node.property, message: 'Prefer async/await to Promise.catch()'})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|