19 lines
278 B
TOML
19 lines
278 B
TOML
|
# Documentation
|
||
|
# https://github.com/rust-lang/rustfmt/blob/master/Configurations.md
|
||
|
|
||
|
# general
|
||
|
max_width = 160
|
||
|
|
||
|
# imports
|
||
|
reorder_imports = true
|
||
|
imports_layout = "Vertical"
|
||
|
imports_granularity = "Crate"
|
||
|
|
||
|
# brace
|
||
|
brace_style = "AlwaysNextLine"
|
||
|
|
||
|
# Derives
|
||
|
merge_derives = true
|
||
|
|
||
|
|