Skip to content

Commit 3552cb3

Browse files
committed
Fix fmt
1 parent becb87b commit 3552cb3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

crates/emmylua_check/src/init.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use std::{path::PathBuf, str::FromStr, sync::Arc};
22

33
use emmylua_code_analysis::{
4-
load_configs, load_workspace_files, update_code_style, DbIndex, EmmyLuaAnalysis, Emmyrc, FileId, LuaFileInfo
4+
load_configs, load_workspace_files, update_code_style, DbIndex, EmmyLuaAnalysis, Emmyrc,
5+
FileId, LuaFileInfo,
56
};
67

78
fn root_from_configs(config_paths: &Vec<PathBuf>, fallback: &PathBuf) -> PathBuf {

crates/emmylua_check/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ mod init;
33
mod output;
44
mod terminal_display;
55

6-
pub use cmd_args::CmdArgs;
76
pub use clap::Parser;
7+
pub use cmd_args::CmdArgs;
88
use fern::Dispatch;
99
use log::LevelFilter;
1010
use output::output_result;

crates/emmylua_check/src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,3 @@ async fn main() -> Result<(), Box<dyn Error + Sync + Send>> {
9595
eprintln!("Check finished");
9696
Ok(())
9797
}
98-

0 commit comments

Comments
 (0)