pub mod check;
pub mod diagnostic;
pub mod docs;
pub mod fix;
pub mod render;
pub mod rules;
pub mod suppression;
pub use check::{
LintError, LintFileReport, LintResult, LintStatus, check_document, check_paths,
check_paths_with_config, check_source,
};
pub use diagnostic::{Applicability, Diagnostic, Fix, Severity};
pub use docs::render_rule_doc;
pub use fix::{Applied, FixOutcome, apply_fixes, fix_source};
pub use render::{OutputMode, render_findings};
pub use rules::{Example, ResolvedRules, Rule, RuleContext, all_rule_ids, all_rules};