-
Notifications
You must be signed in to change notification settings - Fork 2
/
rustfmt.toml
34 lines (33 loc) · 1011 Bytes
/
rustfmt.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#▒▒▒▒▒▒▒▒▒▒▒▒ STABLE ▒▒▒▒▒▒▒▒▒▒▒▒▒
edition = "2018"
max_width = 80
fn_args_layout = "Vertical"
hard_tabs = true
tab_spaces = 2
merge_derives = true
remove_nested_parens = true
reorder_imports = true
reorder_modules = true
use_field_init_shorthand = true
#▒▒▒▒▒▒▒▒▒▒▒▒ UNSTABLE ▒▒▒▒▒▒▒▒▒▒▒▒▒
#binop_separator = "Front"
#brace_style = "AlwaysNextLine"
#control_brace_style = "AlwaysNextLine"
#combine_control_expr = false
#empty_item_single_line = true
#error_on_line_overflow = true
#wrap_comments = true
#comment_width = 70
#format_strings = true
#imports_indent = "Block"
#imports_layout = "Mixed"
#merge_imports = true
#indent_style = "Block"
#match_block_trailing_comma = true
#trailing_comma = "Always"
#reorder_impl_items = true
#space_after_colon = true
#space_before_colon = true
#spaces_around_ranges = true
#trailing_semicolon = true
#type_punctuation_density = "Wide"