Mark the HasFluff rule as non-fixable

This commit is contained in:
Daan Boerlage 2022-08-28 01:34:14 +02:00
parent b0d682105c
commit 50688d33dd
Signed by: daan
GPG key ID: FCE070E1E4956606

View file

@ -18,7 +18,7 @@ impl Rule for HasFluff {
}
fn fix(_filename: &str, _captures: &Captures) -> Result<FixStatus> {
return Ok(FixStatus::NotImplemented)
return Ok(FixStatus::NotFixable)
}
}