From 20fe3a14dc0d43ccfdc9683325382edbc5948bd1 Mon Sep 17 00:00:00 2001 From: Tobin Harding Date: Fri, 21 Jan 2022 10:00:46 +1100 Subject: [PATCH] Add a disabled rustfmt.toml We do not currently use `rustfmt`, this is a nuisance for devs who routinely work on code bases that do use rustfmt who often have their editors set to format on save. We can make the life of such devs much better by explicitly disabling formatting using `rustfmt.toml`. ref: https://rust-lang.github.io/rustfmt/?version=v1.4.38&search=#disable_all_formatting --- rustfmt.toml | 1 + 1 file changed, 1 insertion(+) create mode 100644 rustfmt.toml diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..c7ad93b --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +disable_all_formatting = true