1 # This file defines the Rust style for automatic reformatting.
2 # See also https://rust-lang.github.io/rustfmt
4 # Rust language edition to be used by the parser.
7 # Version of the formatting rules to use.
10 # Line endings will be converted to \n.
11 newline_style = "Unix"
15 # The "Default" setting has a heuristic which splits lines too aggresively.
16 # We are willing to revisit this setting in future versions of rustfmt.
18 # * https://github.com/rust-lang/rustfmt/issues/3119
19 # * https://github.com/rust-lang/rustfmt/issues/3120
20 use_small_heuristics = "Max"
22 # Third party code is formatted upstream.
24 "third_party/rust/**/crate",