docgarden 0.1.0-rc0

Mechanical repository-knowledge linter for agentic engineering repositories
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::config::Config;

use super::FilePolicy;

pub(crate) mod file;
pub(crate) mod frontmatter;
pub(crate) mod local_paths;

pub(crate) struct NodeRuleContext<'a> {
    pub(crate) config: &'a Config,
    pub(crate) policy: FilePolicy,
    pub(crate) file: &'a str,
}