123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- "use strict";
- const astUtils = require("./utils/ast-utils");
- function hasLeftHandObject(node) {
-
- if (node.object.type === "ObjectExpression" && node.object.properties.length === 0) {
- return true;
- }
- const objectNodeToCheck = node.object.type === "MemberExpression" && astUtils.getStaticPropertyName(node.object) === "prototype" ? node.object.object : node.object;
- if (objectNodeToCheck.type === "Identifier" && objectNodeToCheck.name === "Object") {
- return true;
- }
- return false;
- }
- module.exports = {
- meta: {
- type: "suggestion",
- docs: {
- description:
- "Disallow use of `Object.prototype.hasOwnProperty.call()` and prefer use of `Object.hasOwn()`",
- recommended: false,
- url: "https://eslint.org/docs/rules/prefer-object-has-own"
- },
- schema: [],
- messages: {
- useHasOwn: "Use 'Object.hasOwn()' instead of 'Object.prototype.hasOwnProperty.call()'."
- },
- fixable: "code"
- },
- create(context) {
- return {
- CallExpression(node) {
- if (!(node.callee.type === "MemberExpression" && node.callee.object.type === "MemberExpression")) {
- return;
- }
- const calleePropertyName = astUtils.getStaticPropertyName(node.callee);
- const objectPropertyName = astUtils.getStaticPropertyName(node.callee.object);
- const isObject = hasLeftHandObject(node.callee.object);
-
- const scope = context.getScope();
- const variable = astUtils.getVariableByName(scope, "Object");
- if (
- calleePropertyName === "call" &&
- objectPropertyName === "hasOwnProperty" &&
- isObject &&
- variable && variable.scope.type === "global"
- ) {
- context.report({
- node,
- messageId: "useHasOwn",
- fix(fixer) {
- const sourceCode = context.getSourceCode();
- if (sourceCode.getCommentsInside(node.callee).length > 0) {
- return null;
- }
- const tokenJustBeforeNode = sourceCode.getTokenBefore(node.callee, { includeComments: true });
-
- if (
- tokenJustBeforeNode &&
- tokenJustBeforeNode.range[1] === node.callee.range[0] &&
- !astUtils.canTokensBeAdjacent(tokenJustBeforeNode, "Object.hasOwn")
- ) {
- return fixer.replaceText(node.callee, " Object.hasOwn");
- }
- return fixer.replaceText(node.callee, "Object.hasOwn");
- }
- });
- }
- }
- };
- }
- };
|