mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
module.exports = {
|
|
meta: {
|
|
docs: {},
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
CallExpression(node) {
|
|
if (node.callee.property && node.callee.property.name === 'forEach') {
|
|
context.report(node, 'Prefer for...of instead of Array.forEach')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|