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.
39 lines
950 B
39 lines
950 B
/**
|
|
* @fileoverview Disallow the use of process.env()
|
|
* @author Vignesh Anand
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow the use of `process.env`",
|
|
category: "Node.js and CommonJS",
|
|
recommended: false
|
|
},
|
|
|
|
schema: []
|
|
},
|
|
|
|
create: function(context) {
|
|
|
|
return {
|
|
|
|
MemberExpression: function(node) {
|
|
var objectName = node.object.name,
|
|
propertyName = node.property.name;
|
|
|
|
if (objectName === "process" && !node.computed && propertyName && propertyName === "env") {
|
|
context.report(node, "Unexpected use of process.env.");
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
};
|
|
|