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