1# Based on
2# https://github.com/rust-lang/rustfmt/blob/rustfmt-1.4.19/Configurations.md
3
4# Stable
5edition = "2018"
6fn_args_layout = "Compressed"
7max_width = 80
8tab_spaces = 2
9use_field_init_shorthand = true
10use_try_shorthand = true
11use_small_heuristics = "Max"
12
13# Unstable
14format_code_in_doc_comments = true
15merge_imports = true
16wrap_comments = true
17