Regenerating node_modules

This commit is contained in:
Chris Raynor
2020-09-14 10:42:37 +01:00
parent 09b4a82c83
commit c96f84308a
5488 changed files with 487362 additions and 60779 deletions

View File

@@ -0,0 +1,16 @@
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')
}
}
}
}
}