arturictus/wrappi

View on GitHub

Showing 3 of 3 total issues

Class Endpoint has 39 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Endpoint < Miller.base(
    :verb, :client, :path, :default_params,
    :headers, :follow_redirects, :basic_auth,
    :body_type, :retry_options, :cache, #:cache_options,
    :async_callback,
Severity: Minor
Found in lib/wrappi/endpoint.rb - About 5 hrs to fix

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

        def new_sections
          sections.map do |section|
            if section =~ PATTERN
              key = section.delete(':')
              raise MissingParamError.new("path: #{input_path} requires param ':#{key}'") unless input_params.key?(key)
    Severity: Minor
    Found in lib/wrappi/path_gen.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 retry_options has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def retry_options
            default = { tries: 3, on: [RetryError] }
            if endpoint.retry_options
              end_opts = endpoint.retry_options.dup
              {}.tap do |h|
    Severity: Minor
    Found in lib/wrappi/executer/retryer.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

    Severity
    Category
    Status
    Source
    Language