Files
url_tracker_tool/node_modules/eslint/lib/rules/no-proto.js
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

49 lines
1.2 KiB
JavaScript

/**
* @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" });
}
}
};
}
};