Showing 28 of 55 total issues
Method VPCIPAddress.HandleWait
has 5 return statements (exceeds 4 allowed). Open
Open
func (r *VPCIPAddress) HandleWait(ctx context.Context) error {
if r.removeOp == nil {
return nil
}
Method IAMServiceAccountKeyLister.List
has 5 return statements (exceeds 4 allowed). Open
Open
func (l *IAMServiceAccountKeyLister) List(ctx context.Context, o interface{}) ([]resource.Resource, error) {
var resources []resource.Resource
opts := o.(*nuke.ListerOpts)
if err := opts.BeforeList(nuke.Global, "iam.googleapis.com"); err != nil {
Method ComputeURLMap.HandleWait
has 5 return statements (exceeds 4 allowed). Open
Open
func (r *ComputeURLMap) HandleWait(ctx context.Context) error {
if r.removeOp == nil {
return nil
}
Method ComputeTargetHTTPProxy.HandleWait
has 5 return statements (exceeds 4 allowed). Open
Open
func (r *ComputeTargetHTTPProxy) HandleWait(ctx context.Context) error {
if r.removeOp == nil {
return nil
}
Method DNSManagedZoneLister.List
has 5 return statements (exceeds 4 allowed). Open
Open
func (l *DNSManagedZoneLister) List(ctx context.Context, o interface{}) ([]resource.Resource, error) {
opts := o.(*nuke.ListerOpts)
var resources []resource.Resource
if err := opts.BeforeList(nuke.Global, "dns.googleapis.com"); err != nil {
Method IAMWorkloadIdentityPoolProviderLister.List
has 5 return statements (exceeds 4 allowed). Open
Open
func (l *IAMWorkloadIdentityPoolProviderLister) List(ctx context.Context, o interface{}) ([]resource.Resource, error) {
var resources []resource.Resource
opts := o.(*nuke.ListerOpts)
if err := opts.BeforeList(nuke.Global, "iam.googleapis.com"); err != nil {
Function execute
has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring. Open
Open
func execute(c *cli.Context) error {
ctx, cancel := context.WithCancel(c.Context)
defer cancel()
gcp, err := gcputil.New(ctx, c.String("project-id"), c.String("impersonate-service-account"))
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function New
has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring. Open
Open
func New(ctx context.Context, projectID, impersonateServiceAccount string) (*GCP, error) {
gcp := &GCP{
Organizations: make([]*Organization, 0),
Projects: make([]*Project, 0),
Regions: []string{"global"},
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"