#![cfg_attr(coverage_nightly, coverage(off))]
mod analysis;
mod format_json;
mod format_markdown;
mod format_sarif;
pub use analysis::{analyze_defect_probability, discover_files_for_defect_analysis};
pub use format_json::format_defect_json;
pub use format_markdown::{format_defect_markdown, format_defect_summary};
pub use format_sarif::format_defect_sarif;
#[cfg(test)]
mod tests_property;
#[cfg(test)]
mod tests_format_json;
#[cfg(test)]
mod tests_format_summary;
#[cfg(test)]
mod tests_format_markdown;
#[cfg(test)]
mod tests_format_sarif;
#[cfg(test)]
mod tests_helpers;
#[cfg(test)]
mod tests_integration;
#[cfg(test)]
mod tests_async;