sephera_core 0.5.0

Shared analysis engine behind the Sephera CLI for LOC metrics, context building, and Tree-sitter AST compression.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::module_name_repetitions)]

mod analyzer;
mod reader;
mod scanner;
#[cfg(test)]
mod tests;
mod types;

pub use crate::core::ignore::IgnoreMatcher;
pub use analyzer::CodeLoc;
pub use scanner::scan_content;
pub use types::{CodeLocReport, LanguageLoc, LocMetrics};