guardrail3 0.2.0

Composable code guardrails for Rust and TypeScript projects
Documentation
# =============================================================================
# rustfmt configuration -- GENERATED by guardrail3
# DO NOT EDIT -- regenerate with: guardrail3 generate
# =============================================================================

# --- Stable settings (work with any rustfmt) ---------------------------------

edition = "2024"
max_width = 100
tab_spaces = 4
use_field_init_shorthand = true
use_try_shorthand = true
reorder_imports = true
reorder_modules = 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