nbt-rust/rustfmt.toml

24 lines
488 B
TOML
Raw Permalink Normal View History

2023-08-02 19:41:28 +08:00
# cargo fmt config
# 最大行长
2023-08-05 13:59:41 +08:00
max_width = 100
2023-08-02 19:41:28 +08:00
# 链式调用的最大长度
2023-08-05 13:59:41 +08:00
chain_width = 80
2023-08-02 19:41:28 +08:00
# 数组的最大长度
2023-08-05 13:59:41 +08:00
array_width = 80
2023-08-02 19:41:28 +08:00
# 函数参数的最大长度
2023-08-05 13:59:41 +08:00
attr_fn_like_width = 80
2023-08-02 19:41:28 +08:00
# 函数调用参数的最大长度
fn_call_width = 80
# 简单函数格式化为单行
fn_single_line = true
# 自动对齐最大长度
enum_discrim_align_threshold = 5
# 字段初始化使用简写
use_field_init_shorthand = true
# 是否使用彩色输出
color = "Always"
edition = "2021"