Sha256: 2169bb0468c55d618dce4593fd8c9e3a9be2ab21a27c497e638d0149370d662d
Contents?: true
Size: 1.19 KB
Versions: 43
Compression:
Stored size: 1.19 KB
Contents
/** * @author Toru Nagashima <https://github.com/mysticatea> * See LICENSE file in root directory for full license. */ "use strict" const { READ, ReferenceTracker } = require("eslint-utils") module.exports = { meta: { docs: { description: "disallow the `Math.cbrt` method.", category: "ES2015", recommended: false, url: "http://mysticatea.github.io/eslint-plugin-es/rules/no-math-cbrt.html", }, fixable: null, schema: [], messages: { forbidden: "ES2015 '{{name}}' method is forbidden.", }, }, create(context) { return { "Program:exit"() { const tracker = new ReferenceTracker(context.getScope()) for (const { node, path } of tracker.iterateGlobalReferences({ Math: { cbrt: { [READ]: true }, }, })) { context.report({ node, messageId: "forbidden", data: { name: path.join(".") }, }) } }, } }, }
Version data entries
43 entries across 43 versions & 1 rubygems