# Rustfmt configuration for gitstack
# See: https://rust-lang.github.io/rustfmt/
# Note: Only stable options are used to ensure compatibility with stable Rust
# Use Rust 2021 edition style
= "2021"
# Maximum line width
= 100
# Use spaces for indentation
= false
= 4
# Function formatting
= "Tall"
# Control flow formatting
= "Default"
# Match arms - use default to match existing code style
= false
# Use field init shorthand
= true
# Try to use shorthand for return statements
= true
# Newline style
= "Auto"
# Reorder imports and modules
= true
= true