# Clippy configuration
# See: https://doc.rust-lang.org/clippy/configuration.html
# The maximum allowed size for arrays on the stack
= 512000
# The maximum allowed size for a type to be passed by value
= 256
# The maximum allowed size for a single binding
= 4
# The maximum allowed size for the name of a type
= 250
# Enable additional lints
= false
# Allow certain lints
= [
"clippy::module_name_repetitions",
"clippy::too_many_arguments",
"clippy::too_many_lines",
"clippy::if_not_else",
"clippy::similar_names",
"clippy::must_use_candidate"
]
# Deny certain lints
= [
"clippy::unwrap_used",
"clippy::expect_used",
"clippy::panic",
"clippy::unimplemented",
"clippy::todo"
]