# Clippy configuration for llmrs
#
# Note: Lint levels (warn, allow, deny) should be specified via:
# - Code attributes: #[allow(clippy::lint_name)]
# - Command-line: cargo clippy -- -W clippy::pedantic
# - Cargo.toml: [lints.clippy]
#
# This file only contains clippy-specific settings like thresholds.
# Cognitive complexity threshold
= 30
# Maximum number of arguments for a function
= 8
# Maximum number of lines for a function
= 150