| 1133 | } |
| 1134 | |
| 1135 | pub trait FileContentChecker: Sync { |
| 1136 | fn name(&self) -> &'static str; |
| 1137 | fn should_process_file(&self, file_path: &str, project_root: &Path) -> bool; |
| 1138 | fn check_file_content(&self, file_content: &FileContent) -> Vec<(usize, String)>; |
| 1139 | } |
| 1140 | |
| 1141 | pub struct MultiCheckerFileProcessor { |
| 1142 | file_cache: HashMap<PathBuf, FileContent>, |
nothing calls this directly
no outgoing calls
no test coverage detected