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.
36 lines
975 B
36 lines
975 B
/** |
|
* @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/mysticatea/eslint-plugin-node/blob/v11.1.0/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", |
|
}) |
|
}, |
|
} |
|
}, |
|
}
|
|
|