# =============================================================================
# rustfmt configuration -- GENERATED by guardrail3
# DO NOT EDIT -- regenerate with: guardrail3 generate
# =============================================================================
# --- Stable settings (work with any rustfmt) ---------------------------------
= "2024"
= 100
= 4
= true
= true
= true
= true
# --- Nightly-only settings ----------------------------------------------------
# These require nightly rustfmt: cargo +nightly fmt
# On stable rustfmt they will produce an error. Uncomment only if your
# CI/local workflow uses nightly rustfmt.
#
# Check compatibility with: rustfmt --version
# Nightly status tracking: https://rust-lang.github.io/rustfmt/
# imports_granularity = "Crate" # Merge imports from the same crate into one `use` block
# group_imports = "StdExternalCrate" # Three-tier ordering: std -> external crates -> internal modules
# format_code_in_doc_comments = true # Run rustfmt on code blocks inside /// doc comments
# format_strings = true # Wrap long string literals
# overflow_delimited_expr = true # Allow closures/arrays to overflow for readability