From acbe85fa95312f0bf4a35ea245185e0f0964dc4a Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 19 Nov 2020 15:56:54 -0600 Subject: [PATCH] Remove empty .rustfmt.toml (#2429) AFAIK this isn't really necessary nowadays given the prevalence of rustfmt, and for whatever reason the Rust plugin for vim uses this file in lieu of all other options, meaning it doesn't pass `--edition 2018` by default which has been causing issues as I've been working on `async` stuff. In any case I don't think we need the file regardless, so this commit deletes it. --- .rustfmt.toml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .rustfmt.toml diff --git a/.rustfmt.toml b/.rustfmt.toml deleted file mode 100644 index 8148fc6346..0000000000 --- a/.rustfmt.toml +++ /dev/null @@ -1 +0,0 @@ -# This file tells tools we use rustfmt. We use the default settings.