From: Jason Ish Date: Tue, 18 Sep 2018 02:35:14 +0000 (-0600) Subject: rustfmt.toml: set to 80 char line width X-Git-Tag: suricata-4.1.0-rc2~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7682b1ba742be02a25739fca8156efb84991b233;p=thirdparty%2Fsuricata.git 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. --- 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