esp-hal/rustfmt.toml
Dániel Buga 517b5ccbe2
Make cargo xfmt respect the format config (#3739)
* Make cargo xfmt respect the format config

* Make sure comments and doc code have the same width
2025-07-03 08:18:02 +00:00

19 lines
392 B
TOML

edition = "2024"
# Comments
format_code_in_doc_comments = true
normalize_comments = true
wrap_comments = true
# Code in comments
doc_comment_code_block_width = 100
comment_width = 100
# Enums
enum_discrim_align_threshold = 35
# Imports
group_imports = "StdExternalCrate"
imports_granularity = "Crate"
imports_layout = "HorizontalVertical"