/** * @author Toru Nagashima * See LICENSE file in root directory for full license. */ "use strict" const { READ, ReferenceTracker } = require("@eslint-community/eslint-utils") const { getSourceCode } = require("eslint-compat-utils") module.exports = { meta: { docs: { description: "disallow the `Object.fromEntries` method.", category: "ES2019", recommended: false, url: "http://eslint-community.github.io/eslint-plugin-es-x/rules/no-object-fromentries.html", }, fixable: null, messages: { forbidden: "ES2019 '{{name}}' method is forbidden.", }, schema: [], type: "problem", }, create(context) { return { "Program:exit"(program) { const sourceCode = getSourceCode(context) const tracker = new ReferenceTracker( sourceCode.getScope(program), ) for (const { node, path } of tracker.iterateGlobalReferences({ Object: { fromEntries: { [READ]: true }, }, })) { context.report({ node, messageId: "forbidden", data: { name: path.join(".") }, }) } }, } }, }