no-unsafe-finally
Configuration
rslint.config.ts
Rule Details
Disallows control flow statements (return, throw, break, continue) inside finally blocks. When control flow statements are used inside finally blocks, they override the control flow of try and catch blocks, which can lead to unexpected behavior and make code harder to understand.
Examples of incorrect code for this rule:
Examples of correct code for this rule: