2021-08-19 00:36:30 +00:00
|
|
|
# https://rust-lang.github.io/rustfmt/?version=master&search=
|
2021-09-26 08:39:57 +00:00
|
|
|
max_width = 120
|
2021-08-19 00:36:30 +00:00
|
|
|
tab_spaces = 4
|
|
|
|
fn_single_line = true
|
|
|
|
match_block_trailing_comma = true
|
|
|
|
normalize_comments = true
|
|
|
|
wrap_comments = true
|
|
|
|
use_field_init_shorthand = true
|
|
|
|
use_try_shorthand = true
|
|
|
|
normalize_doc_attributes = true
|
2021-11-29 13:51:55 +00:00
|
|
|
report_todo = "Never"
|
2021-08-19 00:36:30 +00:00
|
|
|
report_fixme = "Always"
|
|
|
|
imports_layout = "HorizontalVertical"
|
2021-11-29 13:35:17 +00:00
|
|
|
imports_granularity = "Crate"
|
2021-08-19 00:36:30 +00:00
|
|
|
reorder_modules = true
|
|
|
|
reorder_imports = true
|
|
|
|
enum_discrim_align_threshold = 20
|
|
|
|
edition = "2018"
|