# Clippy configuration (similar to .rubocop.yml)
# See https://doc.rust-lang.org/clippy/configuration.html for all options
# Cognitive complexity threshold (similar to RuboCop's complexity cops)
= 30
# Documentation requirements
= false
# Enum variant name threshold
= 3
# Maximum number of lines for a single expression
= 4
# Maximum number of arguments for a function
= 7
# Maximum number of lines for a function
= 100
# Type complexity threshold
= 250
# Trivial copy threshold
= 128
# Avoid certain lint groups that might be too strict initially
# You can enable these later as you get more comfortable with Rust
= false