2020-03-07 11:45:40 +08:00
|
|
|
/**
|
|
|
|
* @fileoverview Rule to disallow use of new operator with the `require` function
|
|
|
|
* @author Wil Moore III
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Rule Definition
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
meta: {
|
2020-05-15 05:33:08 +08:00
|
|
|
deprecated: true,
|
|
|
|
|
|
|
|
replacedBy: ["node/no-new-require"],
|
|
|
|
|
2020-03-07 11:45:40 +08:00
|
|
|
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"
|
|
|
|
},
|
|
|
|
|
2020-05-15 05:33:08 +08:00
|
|
|
schema: [],
|
|
|
|
|
|
|
|
messages: {
|
|
|
|
noNewRequire: "Unexpected use of new with require."
|
|
|
|
}
|
2020-03-07 11:45:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
create(context) {
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
NewExpression(node) {
|
|
|
|
if (node.callee.type === "Identifier" && node.callee.name === "require") {
|
2020-05-15 05:33:08 +08:00
|
|
|
context.report({
|
|
|
|
node,
|
|
|
|
messageId: "noNewRequire"
|
|
|
|
});
|
2020-03-07 11:45:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|