Skip to main content

kardo_core/
lib.rs

1#![doc = include_str!("../README.md")]
2#![forbid(unsafe_code)]
3#![warn(clippy::cargo)]
4
5pub mod db;
6pub mod scanner;
7pub mod parser;
8pub mod git;
9pub mod analysis;
10pub mod scoring;
11pub mod rules;
12#[cfg(feature = "watcher")]
13pub mod watcher;
14#[cfg(feature = "llm")]
15pub mod llm;
16#[cfg(feature = "embeddings")]
17pub mod embeddings;
18#[cfg(feature = "tui")]
19pub mod tui;
20pub mod anonymize;
21pub mod pro;
22pub mod workspace;
23pub mod fix;
24pub mod config;
25pub mod error;
26pub mod prelude;
27pub mod analyze;
28
29pub use error::{KardoError, KardoResult};