use std::path::Path;
pub(super) fn check_for_pattern(project_path: &Path, patterns: &[&str]) -> bool {
crate::falsification::helpers::files_contain_pattern(
project_path,
&["src/**/*.rs", "**/*.yaml", "**/*.toml", "**/*.json", "**/*.md"],
patterns,
)
}
pub(super) fn check_ci_for_pattern(project_path: &Path, patterns: &[&str]) -> bool {
crate::falsification::helpers::ci_contains_pattern(project_path, patterns)
}