You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
/** |
|
* @author Wil Moore III |
|
* See LICENSE file in root directory for full license. |
|
*/ |
|
"use strict" |
|
|
|
module.exports = { |
|
meta: { |
|
type: "suggestion", |
|
docs: { |
|
description: "disallow `new` operators with calls to `require`", |
|
category: "Possible Errors", |
|
recommended: false, |
|
url: |
|
"https://github.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-new-require.md", |
|
}, |
|
fixable: null, |
|
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", |
|
}) |
|
} |
|
}, |
|
} |
|
}, |
|
}
|
|
|