Skip to content

Commit f6a04f2

Browse files
[autofix.ci] apply automated fixes
1 parent 0704088 commit f6a04f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ impl Rule for RequireAwait {
161161
fn get_delete_span(ctx: &LintContext, start: u32) -> Span {
162162
let source_text = ctx.source_text();
163163
let source_from_start = &source_text[(start as usize)..];
164-
164+
165165
// Find the position of "async" keyword from the start position
166166
let async_pos = source_from_start.find("async").unwrap_or(0);
167167
let async_start = start + async_pos as u32;

0 commit comments

Comments
 (0)