# Clippy configuration file
#
# This file contains clippy SETTINGS (thresholds, MSRV, etc.)
# Lint LEVELS (warn/deny/allow) must be configured in Cargo.toml under [lints.clippy]
# Minimum supported Rust version
= "1.85"
# Cognitive complexity threshold before warning
= 25
# Maximum number of function arguments before warning
= 7
# Maximum number of lines in a function before warning
= 100