添加rustfmt.toml配置文件,设置代码格式化规则

This commit is contained in:
shenjack 2024-02-25 01:28:44 +08:00
parent 559de2e2f6
commit 4bad0c95c5
Signed by: shenjack
GPG Key ID: 7B1134A979775551

23
ica-rs/rustfmt.toml Normal file
View File

@ -0,0 +1,23 @@
# cargo fmt config
# 最大行长
max_width = 120
# 链式调用的最大长度
chain_width = 100
# 数组的最大长度
array_width = 100
# 函数参数的最大长度
attr_fn_like_width = 100
# 函数调用参数的最大长度
fn_call_width = 80
# 简单函数格式化为单行
fn_single_line = true
# 自动对齐最大长度
enum_discrim_align_threshold = 5
# 字段初始化使用简写
use_field_init_shorthand = true
# 是否使用彩色输出
color = "Always"
edition = "2021"