Graphite/rustfmt.toml
Dennis Kobert beb1c6ae64
Upgrade to the Rust 2024 edition (#2367)
* Update to rust 2024 edition

* Fixes

* Clean up imports

* Cargo fmt again

---------

Co-authored-by: Keavon Chambers <keavon@keavon.com>
2025-03-12 17:29:12 -07:00

14 lines
532 B
TOML

edition = "2024"
hard_tabs = true
max_width = 200
newline_style = "Unix"
use_try_shorthand = true
# Maybe enable these in the future when they're stabilized
# normalize_comments = true
# normalize_doc_attributes = true
# struct_lit_width = 35
# where_single_line = true
# match_block_trailing_comma = true # https://github.com/rust-lang/rustfmt/issues/3380
# control_brace_style = "ClosingNextLine" # https://github.com/rust-lang/rustfmt/issues/3377
# blank_lines_lower_bound = 1 # https://github.com/rust-lang/rustfmt/issues/3382