mirror of https://github.com/lukechilds/node.git
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.
35 lines
930 B
35 lines
930 B
/**
|
|
* @fileoverview Rule for disallowing require() outside of the top-level module context
|
|
* @author Jamund Ferguson
|
|
* @copyright 2015 Jamund Ferguson. All rights reserved.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
var ACCEPTABLE_PARENTS = [
|
|
"AssignmentExpression",
|
|
"VariableDeclarator",
|
|
"MemberExpression",
|
|
"ExpressionStatement",
|
|
"CallExpression",
|
|
"ConditionalExpression",
|
|
"Program",
|
|
"VariableDeclaration"
|
|
];
|
|
|
|
module.exports = function(context) {
|
|
return {
|
|
"CallExpression": function(node) {
|
|
if (node.callee.name === "require") {
|
|
var isGoodRequire = context.getAncestors().every(function(parent) {
|
|
return ACCEPTABLE_PARENTS.indexOf(parent.type) > -1;
|
|
});
|
|
if (!isGoodRequire) {
|
|
context.report(node, "Unexpected require().");
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
module.exports.schema = [];
|
|
|