/** * @fileoverview Rule to flag when using new Function * @author Ilya Volodin */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = function(context) { return { "NewExpression": function(node) { if (node.callee.name === "Function") { context.report(node, "The Function constructor is eval."); } } }; };