fl8 0.1.0

Lightweight cloud-agnostic Infrastructure as Code (IaC) library in Rust
Documentation
# === Edition ===
edition = "2024"

# Maximum line width
max_width = 100

# Tabs and indentation
hard_tabs = false
tab_spaces = 4

# Newline style
newline_style = "Unix"

# Reordering and grouping
reorder_imports = true
group_imports = "StdExternalCrate" # Groups std, external crates, and local modules
imports_granularity = "Crate"      # Use crate-level imports

# Struct and enum formatting
struct_field_align_threshold = 20
enum_discrim_align_threshold = 20
use_field_init_shorthand = true
match_block_trailing_comma = true

# Comments
wrap_comments = true
normalize_comments = true

# Trailing commas
trailing_comma = "Vertical"