]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/docs/src/rules/no-process-exit.md
import 8.41.0 source
[pve-eslint.git] / eslint / docs / src / rules / no-process-exit.md
index f224218a7e11cc87e61550943c59ffea2a464001..90e312b2d4523f6cd560b8f5dab9e8d1101957a5 100644 (file)
@@ -1,11 +1,10 @@
 ---
 title: no-process-exit
-layout: doc
 rule_type: suggestion
 ---
 
 
-This rule was **deprecated** in ESLint v7.0.0. Please use the corresponding rule in [`eslint-plugin-node`](https://github.com/mysticatea/eslint-plugin-node).
+This rule was **deprecated** in ESLint v7.0.0. Please use the corresponding rule in [`eslint-plugin-n`](https://github.com/eslint-community/eslint-plugin-n).
 
 The `process.exit()` method in Node.js is used to immediately stop the Node.js process and exit. This is a dangerous operation because it can occur in any method at any point in time, potentially stopping a Node.js application completely when an error occurs. For example: