style: 应用 rustfmt 格式化
整理 components、commands、entity 和 utils 中的 import 顺序、尾逗号、换行与文件末尾换行。 这保持代码风格与 rustfmt 输出一致,减少后续功能提交里的格式噪音。
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
use clap::{arg, Args, Parser, Subcommand};
|
||||
use clap::{Args, Parser, Subcommand, arg};
|
||||
|
||||
pub mod components;
|
||||
pub mod create;
|
||||
@@ -68,5 +68,5 @@ pub struct ComponentsArgs {
|
||||
pub texture: Option<String>,
|
||||
/// The item's identifier
|
||||
#[arg(short, long)]
|
||||
pub identifier: Option<String>
|
||||
pub identifier: Option<String>,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user