# Example Debtmap Configuration: Orchestration Detection Tuning
#
# This example shows how to configure orchestration detection to reduce
# false positives for your specific codebase patterns.
[]
# Weights for combining cyclomatic and cognitive complexity
# Must sum to 1.0. Default favors cognitive complexity (0.7) over cyclomatic (0.3)
= 0.3
= 0.7
# Maximum values for normalization (0-100 scale)
= 50.0
= 100.0
[]
# Maximum cyclomatic complexity for coordinator functions.
= 5
# Minimum fraction of statements that delegate to other functions.
= 0.2
# Minimum number of non-standard-library callees.
= 3
# Relative importance of cognitive complexity in orchestration scoring.
= 0.7