repopilot 0.13.0

Local-first CLI for repository audit, architecture risk detection, baseline tracking, and CI-friendly code review.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::*;

#[test]
fn repopilot_internal_paths_are_excluded_from_review_scope() {
    assert!(is_repopilot_internal_path(Path::new(
        ".repopilot/cache/repo_context.json"
    )));
    assert!(is_repopilot_internal_path(Path::new(
        r".repopilot\cache\repo_context.json"
    )));
    assert!(!is_repopilot_internal_path(Path::new("src/lib.rs")));
}