Sha256: c4f9f364bee643df8edfaf3ae392d1fc46eae59f1ce7dcf528101612906938dd
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.asinh` method.", category: "ES2015", recommended: false, url: "http://mysticatea.github.io/eslint-plugin-es/rules/no-math-asinh.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: { asinh: { [READ]: true }, }, })) { context.report({ node, messageId: "forbidden", data: { name: path.join(".") }, }) } }, } }, }
Version data entries
43 entries across 43 versions & 1 rubygems