From 81d89d18a051b942b283e71df162cad823d1b73c Mon Sep 17 00:00:00 2001 From: Nytelife26 Date: Thu, 7 Nov 2024 23:37:38 +0000 Subject: [PATCH] revert: delete accidental inclusion of debug message --- proselint-rs/crates/proselint/src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proselint-rs/crates/proselint/src/utils.rs b/proselint-rs/crates/proselint/src/utils.rs index 27e55a1dd..028365e43 100644 --- a/proselint-rs/crates/proselint/src/utils.rs +++ b/proselint-rs/crates/proselint/src/utils.rs @@ -2,6 +2,7 @@ use std::{collections::HashMap, path::PathBuf}; use proselint_registry::checks::{Check, LintResult}; use walkdir::WalkDir; +use rayon::prelude::*; use crate::config::base::Config; @@ -104,7 +105,6 @@ pub fn lint( // TODO: registry let checks: Vec = proselint_checks::REGISTER.to_vec(); - println!("found {} checks :)", checks.len()); // TODO: parallelize let mut errors: Vec = checks