From 7682b1ba742be02a25739fca8156efb84991b233 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 17 Sep 2018 20:35:14 -0600 Subject: [PATCH] rustfmt.toml: set to 80 char line width The rustfmt default is 100, set to 80 to be more inline with the Suricata C code. --- rust/rustfmt.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 rust/rustfmt.toml diff --git a/rust/rustfmt.toml b/rust/rustfmt.toml new file mode 100644 index 0000000000..4976f5ad9a --- /dev/null +++ b/rust/rustfmt.toml @@ -0,0 +1,2 @@ +# Rust default is 100. Use 80 to bring in line with Suricata C code. +max_width = 80