Skip to content

Commit fe37699

Browse files
[autofix.ci] apply automated fixes
1 parent f9e9ef5 commit fe37699

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/oxc_linter/src/rules/eslint/no_unsafe_finally.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ use crate::{AstNode, context::LintContext, rule::Rule};
1010

1111
fn no_unsafe_finally_diagnostic(span: Span) -> OxcDiagnostic {
1212
OxcDiagnostic::warn("Unsafe `finally` block.")
13-
.with_help("Control flow inside `try` or `catch` blocks will be overwritten by this statement.")
13+
.with_help(
14+
"Control flow inside `try` or `catch` blocks will be overwritten by this statement.",
15+
)
1416
.with_label(span)
1517
}
1618

0 commit comments

Comments
 (0)