xmr-btc-swap/rustfmt.toml
Thomas Eizinger 6d9b21cb47
Change imports_granularity to module
This reduces the overall amount of LoC that imports take up in our
codebase by almost 100.
It also makes merge-conflicts less likely because there is less
grouping together of imports that may lead to layout changes which
in turn can cause merge conflicts.
2021-03-04 14:48:13 +11:00

13 lines
285 B
TOML

edition = "2018"
condense_wildcard_suffixes = true
format_macro_matchers = true
imports_granularity = "Module"
use_field_init_shorthand = true
format_code_in_doc_comments = true
normalize_comments = true
wrap_comments = true
overflow_delimited_expr = true
ignore = [
"tokio-tar"
]