# You need nightly toolchain to format code
# To install nightly-> rustup toolchain install nightly
# To run formatter -> cargo +nightly fmt
# All rules https://rust-lang.github.io/rustfmt/?version=v1.5.1
= true
= 95
= false
= true
= 120
= 50
# Basic
= "Max"
# Imports
#imports_granularity = "Crate"
#reorder_imports = true
# Example of how to ignore files
#ignore = [
# "src/types.rs",
# "src/foo/bar.rs",
#]
# Misc
#binop_separator = "Back"
#chain_width = 80
#match_arm_blocks = false
#match_arm_leading_pipes = "Preserve"
#match_block_trailing_comma = true
#reorder_impl_items = false
#spaces_around_ranges = false
#trailing_comma = "Vertical"
#trailing_semicolon = false
#use_field_init_shorthand = true