Sha256: 8ed284bb51404de207f15410f879ad748a12ceb0a90c9adf7581a82b377d84b5
Contents?: true
Size: 1.13 KB
Versions: 45
Compression:
Stored size: 1.13 KB
Contents
/** * @fileoverview Disallow the use of process.exit() * @author Nicholas C. Zakas */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow the use of `process.exit()`", category: "Node.js and CommonJS", recommended: false }, schema: [] }, create: function(context) { //-------------------------------------------------------------------------- // Public //-------------------------------------------------------------------------- return { CallExpression: function(node) { var callee = node.callee; if (callee.type === "MemberExpression" && callee.object.name === "process" && callee.property.name === "exit" ) { context.report(node, "Don't use process.exit(); throw an error instead."); } } }; } };
Version data entries
45 entries across 45 versions & 2 rubygems