From ba85eb846c9bd76bfc5607e70471c553258bf714 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 14 Dec 2022 21:52:44 -0500 Subject: [PATCH] Run cargo fmt --- src/settings/configuration.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/settings/configuration.rs b/src/settings/configuration.rs index ad27c160cf..5ce23dc10a 100644 --- a/src/settings/configuration.rs +++ b/src/settings/configuration.rs @@ -229,8 +229,8 @@ impl Configuration { if let Some(unfixable) = overrides.unfixable { self.unfixable = Some(unfixable); } - // Special-case: `extend_ignore` and `extend_select` are parallel arrays, so push an - // empty array if only one of the two is provided. + // Special-case: `extend_ignore` and `extend_select` are parallel arrays, so + // push an empty array if only one of the two is provided. match (overrides.extend_ignore, overrides.extend_select) { (Some(extend_ignore), Some(extend_select)) => { self.extend_ignore.push(extend_ignore);