This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/eslint/lib/rules/no-new-require.js

39 lines
960 B
JavaScript
Raw Normal View History

2019-08-11 18:48:02 +00:00
/**
* @fileoverview Rule to disallow use of new operator with the `require` function
* @author Wil Moore III
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
type: "suggestion",
docs: {
description: "disallow `new` operators with calls to `require`",
category: "Node.js and CommonJS",
recommended: false,
url: "https://eslint.org/docs/rules/no-new-require"
},
schema: []
},
create(context) {
return {
NewExpression(node) {
if (node.callee.type === "Identifier" && node.callee.name === "require") {
context.report({ node, message: "Unexpected use of new with require." });
}
}
};
}
};