-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrustfmt.toml
38 lines (36 loc) · 1.76 KB
/
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
35
36
37
38
# PROJECT FORMAT SPECIFICATION
# See https://rust-lang.github.io/rustfmt/
# Stable features
edition = "2021"
max_width = 80
fn_call_width = 50
array_width = 50
chain_width = 35
fn_params_layout = "Tall"
force_explicit_abi = true
merge_derives = true
match_block_trailing_comma = true
newline_style = "Unix"
remove_nested_parens = true
reorder_imports = true
reorder_modules = false
single_line_if_else_max_width = 70
single_line_let_else_max_width = 70
use_try_shorthand = true
use_field_init_shorthand = true
tab_spaces = 4
# Unstable features (nightly only, tracking issues linked)
binop_separator = "Front" # https://github.com/rust-lang/rustfmt/issues/3368
brace_style = "AlwaysNextLine" # https://github.com/rust-lang/rustfmt/issues/3376
combine_control_expr = false # https://github.com/rust-lang/rustfmt/issues/3369
comment_width = 80 # https://github.com/rust-lang/rustfmt/issues/3349
doc_comment_code_block_width = 80 # https://github.com/rust-lang/rustfmt/issues/5359
condense_wildcard_suffixes = true # https://github.com/rust-lang/rustfmt/issues/3384
empty_item_single_line = true # https://github.com/rust-lang/rustfmt/issues/3356
format_code_in_doc_comments = true # https://github.com/rust-lang/rustfmt/issues/3348
hex_literal_case = "Lower" # https://github.com/rust-lang/rustfmt/issues/5081
imports_indent = "Block" # https://github.com/rust-lang/rustfmt/issues/3360
indent_style = "Block" # https://github.com/rust-lang/rustfmt/issues/3346
reorder_impl_items = true # https://github.com/rust-lang/rustfmt/issues/3363
trailing_semicolon = false # https://github.com/rust-lang/rustfmt/issues/3378
wrap_comments = true # https://github.com/rust-lang/rustfmt/issues/3347