diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2018-04-09 17:26:00 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2018-04-10 17:32:53 -0700 |
commit | b292f78363c1832f91a952a39effe0e953016625 (patch) | |
tree | 7924209abeba5c1bfa58550e85c19407cfa054e3 /rustfmt.toml | |
parent | 0f85c645197608a32f453f7f7f1f9d5709456c2a (diff) | |
download | servo-b292f78363c1832f91a952a39effe0e953016625.tar.gz servo-b292f78363c1832f91a952a39effe0e953016625.zip |
Disable import reordering for now.
Tidy wants it one way, and the latest nightly of rustfmt wants it
another way.
Diffstat (limited to 'rustfmt.toml')
-rw-r--r-- | rustfmt.toml | 2 |
1 files changed, 2 insertions, 0 deletions
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 |