Files
url_tracker_tool/node_modules/eslint/lib/rules/no-new-require.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

51 lines
1.2 KiB
JavaScript

/**
* @fileoverview Rule to disallow use of new operator with the `require` function
* @author Wil Moore III
* @deprecated in ESLint v7.0.0
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
/** @type {import('../shared/types').Rule} */
module.exports = {
meta: {
deprecated: true,
replacedBy: [],
type: "suggestion",
docs: {
description: "Disallow `new` operators with calls to `require`",
recommended: false,
url: "https://eslint.org/docs/latest/rules/no-new-require"
},
schema: [],
messages: {
noNewRequire: "Unexpected use of new with require."
}
},
create(context) {
return {
NewExpression(node) {
if (node.callee.type === "Identifier" && node.callee.name === "require") {
context.report({
node,
messageId: "noNewRequire"
});
}
}
};
}
};