Skip to content

Commit

Permalink
docs(process-exit-as-throw): update wording (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath authored Aug 5, 2024
1 parent 388cef9 commit e5e758e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/process-exit-as-throw.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ function foo(a) {
}
```

ESLint does not address `process.exit()` as stop in code path analysis, then [consistent-return] rule will warn the above code.
ESLint does not mark code after `process.exit()` calls as unreachable like it does with `throw` and `return` expressions, meaning rules like [consistent-return] will still warn.

If you turn this rule on, ESLint comes to address `process.exit()` as throw in code path analysis. So, above code will get expected code path.
This rule overrides the default code path analyzer so that code after `process.exit()` calls are marked as unreachable, meaning code like the above will not trigger warnings.

This rule itself never warn code.

Expand Down

0 comments on commit e5e758e

Please sign in to comment.