# Clippy configuration
# Enforce strict code quality standards
# Cognitive complexity threshold
= 30
# Note: We use Cargo.toml [lints] instead of disallowed-methods here
# This allows tests to use unwrap/expect while keeping production code strict
# Type complexity threshold
= 250
# Too many arguments threshold
= 7
# Avoid breaking exported API
= true