35 lines
956 B
JavaScript
35 lines
956 B
JavaScript
/**
|
|
* @author Nicholas C. Zakas
|
|
* See LICENSE file in root directory for full license.
|
|
*/
|
|
"use strict"
|
|
|
|
module.exports = {
|
|
meta: {
|
|
type: "suggestion",
|
|
docs: {
|
|
description: "disallow the use of `process.exit()`",
|
|
category: "Possible Errors",
|
|
recommended: false,
|
|
url: "https://github.com/weiran-zsd/eslint-plugin-node/blob/HEAD/docs/rules/no-process-exit.md",
|
|
},
|
|
fixable: null,
|
|
schema: [],
|
|
messages: {
|
|
noProcessExit: "Don't use process.exit(); throw an error instead.",
|
|
},
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
"CallExpression > MemberExpression.callee[object.name = 'process'][property.name = 'exit']"(
|
|
node
|
|
) {
|
|
context.report({
|
|
node: node.parent,
|
|
messageId: "noProcessExit",
|
|
})
|
|
},
|
|
}
|
|
},
|
|
}
|