aprender-graph 0.29.0

GPU-first embedded graph database for code analysis (call graphs, dependencies, AST traversals)
1
2
3
4
5
6
7
8
9
10
11
# Clippy configuration
# See: https://rust-lang.github.io/rust-clippy/master/index.html#configuration

# Enforce maximum cognitive complexity per function
cognitive-complexity-threshold = 25

# Banned methods (Cloudflare-class defect prevention)
disallowed-methods = [
    { path = "std::option::Option::unwrap", reason = "Use .expect() or ? operator" },
    { path = "std::result::Result::unwrap", reason = "Use .expect() or ? operator" },
]