MCPcopy Create free account
hub / github.com/FastLED/FastLED / FileContentChecker

Interface FileContentChecker

ci/lint_cpp_rs/src/lib.rs:1135–1139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1133}
1134
1135pub 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
1141pub struct MultiCheckerFileProcessor {
1142 file_cache: HashMap<PathBuf, FileContent>,

Callers

nothing calls this directly

Implementers 1

lib.rsci/lint_cpp_rs/src/lib.rs

Calls

no outgoing calls

Tested by

no test coverage detected