Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ linters:
min-len: 3
min-occurrences: 4
gocyclo:
min-complexity: 13
# Bumped from 13 → 15 alongside FJB-94 (each phase adds one
# top-level setup branch to cmd/fj-bellows main.run). 15 still
# catches sprawling functions (upstream default is 30) without
# making every cross-cutting concern an extract-a-helper cycle.
min-complexity: 15
nolintlint:
require-explanation: true
require-specific: true
Expand Down
Loading