From 2fff6bda4e83fbdaa37b7943925953fd22f38c94 Mon Sep 17 00:00:00 2001 From: Evan Richter Date: Fri, 13 Nov 2020 10:58:53 -0600 Subject: [PATCH] fmt --- src/scanner.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/scanner.rs b/src/scanner.rs index e181e75..cb2075c 100644 --- a/src/scanner.rs +++ b/src/scanner.rs @@ -421,12 +421,12 @@ pub fn should_filter_response(response: &FeroxResponse) -> bool { if CONFIGURATION .filter_size .contains(&response.content_length()) - || CONFIGURATION - .filter_line_count - .contains(&response.line_count()) - || CONFIGURATION - .filter_word_count - .contains(&response.word_count()) + || CONFIGURATION + .filter_line_count + .contains(&response.line_count()) + || CONFIGURATION + .filter_word_count + .contains(&response.word_count()) { // filtered value from --filter-size, size filters and wildcards are two separate filters // and are applied independently