Sha256: b27dfe34fcf7db4e8bcfc7763c5a6277822da57e9084233c5efb727a7e64f78d
Contents?: true
Size: 1023 Bytes
Versions: 45
Compression:
Stored size: 1023 Bytes
Contents
/** * @fileoverview Rule to flag usage of __iterator__ property * @author Ian Christian Myers */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow the use of the `__iterator__` property", category: "Best Practices", recommended: false }, schema: [] }, create: function(context) { return { MemberExpression: function(node) { if (node.property && (node.property.type === "Identifier" && node.property.name === "__iterator__" && !node.computed) || (node.property.type === "Literal" && node.property.value === "__iterator__")) { context.report(node, "Reserved name '__iterator__'."); } } }; } };
Version data entries
45 entries across 45 versions & 2 rubygems