18 lines
445 B
TOML
18 lines
445 B
TOML
# Rustfmt configuration
|
|
edition = "2024"
|
|
max_width = 80
|
|
hard_tabs = false
|
|
tab_spaces = 4
|
|
newline_style = "Unix"
|
|
use_small_heuristics = "Default"
|
|
reorder_imports = true
|
|
reorder_modules = true
|
|
remove_nested_parens = true
|
|
merge_derives = true
|
|
use_try_shorthand = false
|
|
use_field_init_shorthand = false
|
|
force_explicit_abi = true
|
|
imports_granularity = "Crate"
|
|
group_imports = "StdExternalCrate"
|
|
format_macro_bodies = true
|
|
format_macro_matchers = true |