46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
/**
|
|
* @author Yosuke Ota <https://github.com/ota-meshi>
|
|
* 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.hasOwn` method.",
|
|
category: "ES2022",
|
|
recommended: false,
|
|
url: "http://eslint-community.github.io/eslint-plugin-es-x/rules/no-object-hasown.html",
|
|
},
|
|
fixable: null,
|
|
messages: {
|
|
forbidden: "ES2022 '{{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: {
|
|
hasOwn: { [READ]: true },
|
|
},
|
|
})) {
|
|
context.report({
|
|
node,
|
|
messageId: "forbidden",
|
|
data: { name: path.join(".") },
|
|
})
|
|
}
|
|
},
|
|
}
|
|
},
|
|
}
|