From fc7af85ba1e19ff657f1a1e7b200e9b363cb4612 Mon Sep 17 00:00:00 2001 From: Lynnesbian Date: Thu, 18 Feb 2021 19:50:22 +1000 Subject: [PATCH] silly clion --- .idea/codeStyles/codeStyleConfig.xml | 5 +++++ src/formats.rs | 2 +- src/main.rs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .idea/codeStyles/codeStyleConfig.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/src/formats.rs b/src/formats.rs index 57c5f76..bb612c9 100644 --- a/src/formats.rs +++ b/src/formats.rs @@ -7,8 +7,8 @@ use std::path::PathBuf; use snailquote::escape; -use crate::Findings; use crate::scanerror::ScanError; +use crate::Findings; const VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION"); diff --git a/src/main.rs b/src/main.rs index f2fe065..a7eab3d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -use std::io::{BufWriter, stdout}; +use std::io::{stdout, BufWriter}; use std::path::{Path, PathBuf}; use clap::Clap;