mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-25 07:20:19 +00:00
Full rename of all identifiers, filenames, and references: ironclaw → optimclaw IronClaw → OptimClaw IRONCLAW → OPTIMCLAW ironclaw_common → optimclaw_common ironclaw_safety → optimclaw_safety Upstream: nearai/ironclaw
9 lines
538 B
TOML
9 lines
538 B
TOML
# Complexity guardrails for AI-assisted development quality.
|
|
# These thresholds prevent new violations while preserving existing code.
|
|
# See: https://github.com/nearai/optimclaw/issues/338
|
|
|
|
cognitive-complexity-threshold = 15 # default: 25 (only active when lint is enabled)
|
|
too-many-lines-threshold = 100 # default: 100 (only active when lint is enabled)
|
|
too-many-arguments-threshold = 7 # default: 7 (keep default, avoids new violations)
|
|
type-complexity-threshold = 250 # default: 250 (keep default, avoids new violations)
|