seval 0.1.2

AI-powered security research CLI with a split-pane TUI, agentic tool execution, and session persistence
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Clippy configuration
# https://doc.rust-lang.org/clippy/lint_configuration.html

# Max lines per function before too_many_lines fires.
too-many-lines-threshold = 120

# Max cognitive complexity before cognitive_complexity fires.
cognitive-complexity-threshold = 30

# Disallowed names (catches placeholder vars left in code).
disallowed-names = ["foo", "bar", "baz", "temp", "tmp"]

# Max function args before too_many_arguments fires.
too-many-arguments-threshold = 8