molock 0.2.0

High-performance mock server for CI/CD pipelines and testing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Clippy configuration for Molock Quality Gates

# Cognitive complexity threshold.
# Functions exceeding this will trigger a warning.
# Recommended default is 25. High-rigor projects use 15-20.
cognitive-complexity-threshold = 25

# Maximum number of arguments a function can take.
# More than 7 usually indicates a need for a struct.
too-many-arguments-threshold = 7

# Maximum number of lines for a function (excluding tests/comments).
# This is a soft limit enforced by the project guidelines.
# function-result-size-threshold = 50