Skip to content

Commit ddad768

Browse files
committed
Fix lint
1 parent b318a4a commit ddad768

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

libs/extractor/src/as_visit.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
use crate::utils::get_string_by_literal_expression;
22
use oxc_allocator::{Allocator, CloneIn};
3-
use oxc_ast::ast::{
4-
Expression, JSXElement,
5-
};
3+
use oxc_ast::ast::{Expression, JSXElement};
64
use oxc_ast_visit::VisitMut;
75
use oxc_ast_visit::walk_mut::walk_expression;
86

libs/extractor/src/visit.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ use oxc_ast::ast::ImportDeclarationSpecifier::{self, ImportSpecifier};
2323
use oxc_ast::ast::JSXAttributeItem::Attribute;
2424
use oxc_ast::ast::JSXAttributeName::Identifier;
2525
use oxc_ast::ast::{
26-
Argument, BindingPatternKind, CallExpression, Expression,
27-
ImportDeclaration, ImportOrExportKind, JSXAttributeValue, JSXChild, JSXElement, Program, PropertyKey, Statement, VariableDeclarator, WithClause,
26+
Argument, BindingPatternKind, CallExpression, Expression, ImportDeclaration,
27+
ImportOrExportKind, JSXAttributeValue, JSXChild, JSXElement, Program, PropertyKey, Statement,
28+
VariableDeclarator, WithClause,
2829
};
2930
use oxc_ast_visit::VisitMut;
3031
use oxc_ast_visit::walk_mut::{

0 commit comments

Comments
 (0)