Sha256: 900aa7217fad4f3979f8741283ed8e26de1030a7683a5ab8cb33308141a3db4b
Contents?: true
Size: 887 Bytes
Versions: 43
Compression:
Stored size: 887 Bytes
Contents
/** * @author Toru Nagashima <https://github.com/mysticatea> * See LICENSE file in root directory for full license. */ "use strict" const Pattern = /^0[bB]/u module.exports = { meta: { docs: { description: "disallow binary numeric literals.", category: "ES2015", recommended: false, url: "http://mysticatea.github.io/eslint-plugin-es/rules/no-binary-numeric-literals.html", }, fixable: null, schema: [], messages: { forbidden: "ES2015 binary numeric literals are forbidden.", }, }, create(context) { return { Literal(node) { if (typeof node.value === "number" && Pattern.test(node.raw)) { context.report({ node, messageId: "forbidden" }) } }, } }, }
Version data entries
43 entries across 43 versions & 1 rubygems