fix: post-merge clippy/fmt cleanup (9407-9410 integration)

This commit is contained in:
Jobdori
2026-04-03 05:12:51 +09:00
parent 06a93a57c7
commit fbafb9cffc
4 changed files with 68 additions and 59 deletions

View File

@@ -1864,6 +1864,7 @@ impl LiveCli {
Ok(())
}
#[allow(clippy::too_many_lines)]
fn handle_repl_command(
&mut self,
command: SlashCommand,
@@ -3463,7 +3464,7 @@ fn build_runtime_plugin_state_with_loader(
loader: &ConfigLoader,
runtime_config: &runtime::RuntimeConfig,
) -> Result<RuntimePluginState, Box<dyn std::error::Error>> {
let plugin_manager = build_plugin_manager(&cwd, &loader, &runtime_config);
let plugin_manager = build_plugin_manager(cwd, loader, runtime_config);
let plugin_registry = plugin_manager.plugin_registry()?;
let plugin_hook_config =
runtime_hook_config_from_plugin_hooks(plugin_registry.aggregated_hooks()?);