# Rustfmt configuration for muse workspace
# Edition
edition = "2024"
# Line width
max_width = 120
# Indentation
tab_spaces = 2
# Formatting
remove_nested_parens = true
reorder_imports = true
reorder_modules = true
format_strings = true
unstable_features = true
wrap_comments = true
group_imports = "StdExternalCrate"
imports_granularity = "Module"
# Use field init shorthand
use_field_init_shorthand = true
# Match blocks
match_block_trailing_comma = true
# Chains
chain_width = 80