lint-ai 0.1.3

Semantic wiki and docs linting for contradictions, stale claims, orphan pages, and missing cross-references
Documentation
1
2
3
4
5
6
7
use anyhow::Result;

fn main() -> Result<()> {
    let args = lint_ai::cli::parse();
    lint_ai::engine::run(args)?;
    Ok(())
}