onddo/boxbilling-cookbook

View on GitHub
providers/api.rb

Summary

Maintainability
A
1 hr
Test Coverage

Method boxbilling_api_request_read_list has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

def boxbilling_api_request_read_list(args = {})
  page = 1
  loop do
    request_args = args.merge(data: { page: page })
    get_list = boxbilling_api_request(:get_list, request_args)
Severity: Minor
Found in providers/api.rb - About 35 mins to fix

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

Method path_with_action has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def path_with_action(path, action)
  path = filter_path(path)
  return path if action.nil?
  path_ary = path.split('/')
  if (path_ary[-1] == 'params')
Severity: Minor
Found in providers/api.rb - About 25 mins to fix

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

There are no issues that match your filters.

Category
Status