Skip to content

Commit b4ea0e7

Browse files
committed
lint issues
1 parent f205dda commit b4ea0e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/oxc_linter/src/config/config_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ mod test {
10691069
// Prepare external plugin store with a custom plugin and rule
10701070
let mut store = ExternalPluginStore::new(true);
10711071
store.register_plugin(
1072-
"path/to/custom".to_string(),
1072+
"path/to/custom".to_string().into(),
10731073
"custom".to_string(),
10741074
0,
10751075
vec!["my-rule".to_string()],

crates/oxc_linter/src/config/rules.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ mod test {
544544
// Register a fake external plugin and rule
545545
let mut store = ExternalPluginStore::new(true);
546546
store.register_plugin(
547-
"path/to/custom-plugin".to_string(),
547+
"path/to/custom-plugin".to_string().into(),
548548
"custom".to_string(),
549549
0,
550550
vec!["my-rule".to_string()],

0 commit comments

Comments
 (0)