Sha256: f4b5cd3f9f01870ae77cd6038c7f3e34862173dd0ef6db319fb0175a5366807c
Contents?: true
Size: 975 Bytes
Versions: 45
Compression:
Stored size: 975 Bytes
Contents
/** * @fileoverview Rule to flag when using constructor for wrapper objects * @author Ilya Volodin */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow `new` operators with the `String`, `Number`, and `Boolean` objects", category: "Best Practices", recommended: false }, schema: [] }, create: function(context) { return { NewExpression: function(node) { var wrapperObjects = ["String", "Number", "Boolean", "Math", "JSON"]; if (wrapperObjects.indexOf(node.callee.name) > -1) { context.report(node, "Do not use {{fn}} as a constructor.", { fn: node.callee.name }); } } }; } };
Version data entries
45 entries across 45 versions & 2 rubygems