webhook/node_modules/eslint-plugin-github/lib/rules/array-foreach.js

21 lines
454 B
JavaScript
Raw Normal View History

module.exports = {
meta: {
2022-11-10 11:43:16 +01:00
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') {
2022-11-10 11:43:16 +01:00
context.report({node, message: 'Prefer for...of instead of Array.forEach'})
}
}
}
}
}