mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
refactor: Give checks full control
This commit is contained in:
parent
220a79ff30
commit
6c28376e50
1 changed files with 14 additions and 2 deletions
|
@ -80,6 +80,19 @@ pub trait Check: Send + Sync {
|
|||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn check_file(
|
||||
&self,
|
||||
path: &std::path::Path,
|
||||
explicit: bool,
|
||||
parser: &tokens::Tokenizer,
|
||||
dictionary: &dyn Dictionary,
|
||||
reporter: &dyn report::Report,
|
||||
) -> Result<(), std::io::Error> {
|
||||
self.check_filename(path, parser, dictionary, reporter)?;
|
||||
self.check_file_content(path, explicit, parser, dictionary, reporter)?;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
struct ReportContext<'m, 'r> {
|
||||
|
@ -491,8 +504,7 @@ fn check_entry(
|
|||
let entry = entry?;
|
||||
if entry.file_type().map(|t| t.is_file()).unwrap_or(true) {
|
||||
let explicit = entry.depth() == 0;
|
||||
checks.check_filename(entry.path(), parser, dictionary, reporter)?;
|
||||
checks.check_file_content(entry.path(), explicit, parser, dictionary, reporter)?;
|
||||
checks.check_file(entry.path(), explicit, parser, dictionary, reporter)?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in a new issue