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;