Sha256: a4cae862df8b78a87517f741681a00f30df0ac34b483e6383f7003766275d29e
Contents?: true
Size: 804 Bytes
Versions: 45
Compression:
Stored size: 804 Bytes
Contents
/** * @fileoverview Rule to flag when initializing octal literal * @author Ilya Volodin */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow octal literals", category: "Best Practices", recommended: true }, schema: [] }, create: function(context) { return { Literal: function(node) { if (typeof node.value === "number" && /^0[0-7]/.test(node.raw)) { context.report(node, "Octal literals should not be used."); } } }; } };
Version data entries
45 entries across 45 versions & 2 rubygems