Command gocyclo calculates the cyclomatic complexities of functions
in Go source code.
Usage:
gocyclo [<flag> ...] <Go file or packages> ...
Flags:
-over N show functions with complexity > N only and
return exit code 1 if the output is non-empty
-top N show the top N most complex functions only
-avg show the average complexity
The output fields for each line are:
<complexity> <full function name> <file:row:column>