UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

40 lines (29 loc) 945 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(context) { return { MemberExpression(node) { const objectName = node.object.name, propertyName = node.property.name; if (objectName === "process" && !node.computed && propertyName && propertyName === "env") { context.report({ node, message: "Unexpected use of process.env." }); } } }; } };