scalo 2.10.12

Self-regulating runtime for Rust data-plane services. Backpressure, load shedding and adaptive scaling are on by default.
# Project:   scalo
# File:      clippy.toml
# Purpose:   Clippy linter configuration
# Language:  TOML
#
# License:   Apache-2.0
# Copyright: (c) 2026 HYPERI PTY LIMITED

# Allow up to 7 function arguments
too-many-arguments-threshold = 7

# Cognitive complexity threshold
cognitive-complexity-threshold = 25

# Allow longer type complexity
type-complexity-threshold = 350

# Minimum lines for a function to be considered too long
too-many-lines-threshold = 150