drft-cli 0.9.1

A structural integrity checker for linked file systems
Documentation
# drft.toml — drft dogfooding itself

# The graph root is this directory. fs walks every file under it, except
# .gitignore matches (target/, etc.) and these globs. The examples/ projects
# are self-contained graphs with their own drft.toml, so they stay out of this
# graph.
ignore = [
  "Cargo.lock",
  "examples/**",
]

[graphs.markdown]
parser = "markdown"
files = ["**/*.md"]

[graphs.frontmatter]
parser = "frontmatter"
files = ["**/*.md"]

# Drift is the value prop — promote staleness to error for CI.
[rules.stale-node]
severity = "error"

[rules.stale-edge]
severity = "error"

# A source repo has many legitimately unlinked files (Cargo.toml, most .rs).
[rules.detached-node]
severity = "off"