Sha256: ebf44d74e110f01776a9c861f0b62ddad6b9eee9a91c5bc31afd3a87fdd5a490
Contents?: true
Size: 1.19 KB
Versions: 45
Compression:
Stored size: 1.19 KB
Contents
/** * @fileoverview Disallow construction of dense arrays using the Array constructor * @author Matt DuVall <http://www.mattduvall.com/> */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow `Array` constructors", category: "Stylistic Issues", recommended: false }, schema: [] }, create: function(context) { /** * Disallow construction of dense arrays using the Array constructor * @param {ASTNode} node node to evaluate * @returns {void} * @private */ function check(node) { if ( node.arguments.length !== 1 && node.callee.type === "Identifier" && node.callee.name === "Array" ) { context.report(node, "The array literal notation [] is preferrable."); } } return { CallExpression: check, NewExpression: check }; } };
Version data entries
45 entries across 45 versions & 2 rubygems