Skip to content

Commit

Permalink
revert: delete accidental inclusion of debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Nytelife26 committed Nov 7, 2024
1 parent 8e37580 commit 81d89d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proselint-rs/crates/proselint/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -104,7 +105,6 @@ pub fn lint(

// TODO: registry
let checks: Vec<Check> = proselint_checks::REGISTER.to_vec();
println!("found {} checks :)", checks.len());

// TODO: parallelize
let mut errors: Vec<LintResult> = checks
Expand Down

0 comments on commit 81d89d1

Please sign in to comment.