persona-community-5/.pnpm-store/v3/files/6f/52e87f8ab7c34bb075a3dcf13def7293aeb83425353634817d62012379e38b2331eeb8a8d90cb5eaf6f8b39debb218f65ad5514c9775b2126ed6d5d6f001b3
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

49 lines
1.2 KiB
Plaintext

/**
* @fileoverview Rule to flag usage of __proto__ property
* @author Ilya Volodin
*/
"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 `__proto__` property",
recommended: false,
url: "https://eslint.org/docs/latest/rules/no-proto"
},
schema: [],
messages: {
unexpectedProto: "The '__proto__' property is deprecated."
}
},
create(context) {
return {
MemberExpression(node) {
if (getStaticPropertyName(node) === "__proto__") {
context.report({ node, messageId: "unexpectedProto" });
}
}
};
}
};