From 50688d33dd76b99b2d64376ae189f8d9bf01a673 Mon Sep 17 00:00:00 2001 From: Daan Boerlage Date: Sun, 28 Aug 2022 01:34:14 +0200 Subject: [PATCH] Mark the HasFluff rule as non-fixable --- src/rules/has_fluff.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules/has_fluff.rs b/src/rules/has_fluff.rs index 77465de..ed759b8 100644 --- a/src/rules/has_fluff.rs +++ b/src/rules/has_fluff.rs @@ -18,7 +18,7 @@ impl Rule for HasFluff { } fn fix(_filename: &str, _captures: &Captures) -> Result { - return Ok(FixStatus::NotImplemented) + return Ok(FixStatus::NotFixable) } }