From b292f78363c1832f91a952a39effe0e953016625 Mon Sep 17 00:00:00 2001 From: Bobby Holley Date: Mon, 9 Apr 2018 17:26:00 -0700 Subject: [PATCH] Disable import reordering for now. Tidy wants it one way, and the latest nightly of rustfmt wants it another way. --- rustfmt.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rustfmt.toml b/rustfmt.toml index 63156a8ec7b..0a1dde3b80c 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,2 +1,4 @@ match_block_trailing_comma = true binop_separator = "Back" +# Turn off import reordering, since the new algorithm clashes with tidy. +reorder_imports = false