mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-12-11 08:24:31 +01:00
20 lines
454 B
JavaScript
20 lines
454 B
JavaScript
module.exports = {
|
|
meta: {
|
|
type: 'suggestion',
|
|
docs: {
|
|
description: 'enforce `for..of` loops over `Array.forEach`',
|
|
url: require('../url')(module)
|
|
},
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
CallExpression(node) {
|
|
if (node.callee.property && node.callee.property.name === 'forEach') {
|
|
context.report({node, message: 'Prefer for...of instead of Array.forEach'})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|