Urara-Blog/node_modules/.pnpm-store/v3/files/60/e88c402857055fcb78c5ad882270cd805f2ff70c77c916de0fad3d322f8cafe82e5e23f3a0eedb1eb394a520eaec0edac96e16e49883918139c9344c281596
2022-08-14 01:14:53 +08:00

52 lines
1.3 KiB
Text

/**
* @fileoverview Rule to flag usage of __iterator__ property
* @author Ian Christian Myers
*/
"use strict";
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
const { getStaticPropertyName } = require("./utils/ast-utils");
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
/** @type {import('../shared/types').Rule} */
module.exports = {
meta: {
type: "suggestion",
docs: {
description: "Disallow the use of the `__iterator__` property",
recommended: false,
url: "https://eslint.org/docs/rules/no-iterator"
},
schema: [],
messages: {
noIterator: "Reserved name '__iterator__'."
}
},
create(context) {
return {
MemberExpression(node) {
if (getStaticPropertyName(node) === "__iterator__") {
context.report({
node,
messageId: "noIterator"
});
}
}
};
}
};