# Clippy Configuration for docref
# Only non-default settings are configured here.
# All other rules use Clippy defaults.
# Enforce consistent format string style (no mixing {x} and {} styles)
= false
# Require documentation on private items too
= true
# Strict complexity limit - encourages breaking down complex functions
= 10
# Strict nesting limit - forces function extraction at 3 levels
= 3
# Alphabetically sort all items within their groupings
= "all"
# Strict function length - encourages focused, single-purpose functions
= 40
# Aggressive acronym linting - HTTP -> Http, XML -> Xml, etc.
= true