alexpeattie/nitlink

View on GitHub
lib/nitlink/response_normalizer.rb

Summary

Maintainability
A
3 hrs
Test Coverage

Assignment Branch Condition size for metadata is too high. [83.49/15]
Open

    def metadata(response)
      response_class = response.class.name

      uri, status, (link, content_location) = case response_class
      when 'Curl::Easy'
Severity: Minor
Found in lib/nitlink/response_normalizer.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method has too many lines. [40/10]
Open

    def metadata(response)
      response_class = response.class.name

      uri, status, (link, content_location) = case response_class
      when 'Curl::Easy'
Severity: Minor
Found in lib/nitlink/response_normalizer.rb by rubocop

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Cyclomatic complexity for metadata is too high. [18/6]
Open

    def metadata(response)
      response_class = response.class.name

      uri, status, (link, content_location) = case response_class
      when 'Curl::Easy'
Severity: Minor
Found in lib/nitlink/response_normalizer.rb by rubocop

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Perceived complexity for metadata is too high. [10/7]
Open

    def metadata(response)
      response_class = response.class.name

      uri, status, (link, content_location) = case response_class
      when 'Curl::Easy'
Severity: Minor
Found in lib/nitlink/response_normalizer.rb by rubocop

This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

Example:

def my_method                   # 1
  if cond                       # 1
    case var                    # 2 (0.8 + 4 * 0.2, rounded)
    when 1 then func_one
    when 2 then func_two
    when 3 then func_three
    when 4..10 then func_other
    end
  else                          # 1
    do_something until a && b   # 2
  end                           # ===
end                             # 7 complexity points

Method metadata has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def metadata(response)
      response_class = response.class.name

      uri, status, (link, content_location) = case response_class
      when 'Curl::Easy'
Severity: Minor
Found in lib/nitlink/response_normalizer.rb - About 1 hr to fix

    Method metadata has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def metadata(response)
          response_class = response.class.name
    
          uri, status, (link, content_location) = case response_class
          when 'Curl::Easy'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb - About 1 hr 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

    Indent when as deep as case.
    Open

          when 'Excon::Response'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Line is too long. [82/80]
    Open

          UnknownResponseTypeError.new("Unknown response type #{response.class.name}")
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Avoid the use of the case equality operator ===.
    Open

            if defined?(Net::HTTPResponse) && Net::HTTPResponse === response
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks for uses of the case equality operator(===).

    Example:

    # bad
    Array === something
    (1..100) === 7
    /something/ === some_string
    
    # good
    something.is_a?(Array)
    (1..100).include?(7)
    some_string =~ /something/

    end at 50, 6 is not aligned with case at 9, 46.
    Open

          end
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks whether the end keywords are aligned properly.

    Three modes are supported through the EnforcedStyleAlignWith configuration parameter:

    If it's set to keyword (which is the default), the end shall be aligned with the start of the keyword (if, class, etc.).

    If it's set to variable the end shall be aligned with the left-hand-side of the variable assignment, if there is one.

    If it's set to start_of_line, the end shall be aligned with the start of the line where the matching keyword appears.

    Example: EnforcedStyleAlignWith: keyword (default)

    # bad
    
    variable = if true
        end
    
    # good
    
    variable = if true
               end

    Example: EnforcedStyleAlignWith: variable

    # bad
    
    variable = if true
        end
    
    # good
    
    variable = if true
    end

    Example: EnforcedStyleAlignWith: startofline

    # bad
    
    variable = if true
        end
    
    # good
    
    puts(if true
    end)

    Use only ascii symbols in comments.
    Open

            # ↑ returned by OpenURI
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks for non-ascii (non-English) characters in comments. You could set an array of allowed non-ascii chars in AllowedChars attribute (empty by default).

    Example:

    # bad
    # Translates from English to 日本語。
    
    # good
    # Translates from English to Japanese

    Avoid the use of the case equality operator ===.
    Open

            response[:headers] = headers_from_string(response[:headers]) if String === response[:headers]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks for uses of the case equality operator(===).

    Example:

    # bad
    Array === something
    (1..100) === 7
    /something/ === some_string
    
    # good
    something.is_a?(Array)
    (1..100).include?(7)
    some_string =~ /something/

    Add parentheses to nested method call headers_from_string response.header_str.
    Open

            [response.url.chomp('?'), response.response_code, grab_headers(headers_from_string response.header_str)]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks for unparenthesized method calls in the argument list of a parenthesized method call.

    Example:

    # good
    method1(method2(arg), method3(arg))
    
    # bad
    method1(method2 arg, method3, arg)

    Prefer single-quoted strings when you don't need string interpolation or special symbols.
    Open

            warn "Unirest support is deprecated and will be removed in Nitlink 2.0"
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Checks if uses of quotes match the configured preference.

    Example: EnforcedStyle: single_quotes (default)

    # bad
    "No special symbols"
    "No string interpolation"
    "Just text"
    
    # good
    'No special symbols'
    'No string interpolation'
    'Just text'
    "Wait! What's #{this}!"

    Example: EnforcedStyle: double_quotes

    # bad
    'Just some text'
    'No special chars or interpolation'
    
    # good
    "Just some text"
    "No special chars or interpolation"
    "Every string in #{project} uses double_quotes"

    Line is too long. [95/80]
    Open

            [response.header.request_uri, response.status, grab_headers(Hash[response.header.all])]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Line is too long. [82/80]
    Open

            [response.request.base_url, response.code, grab_headers(response.headers)]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Indent when as deep as case.
    Open

          when 'RestClient::Response'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Final newline missing.
    Open

    end
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Missing top-level class documentation comment.
    Open

      class ResponseNormalizer
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

    The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

    Example:

    # bad
    class Person
      # ...
    end
    
    # good
    # Description/Explanation of Person class
    class Person
      # ...
    end

    Indent when as deep as case.
    Open

          when 'Curl::Easy'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Line is too long. [90/80]
    Open

            [response.request.url, response.code, grab_headers(response.net_http_res.to_hash)]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Line is too long. [101/80]
    Open

            response[:headers] = headers_from_string(response[:headers]) if String === response[:headers]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Indent when as deep as case.
    Open

          when 'HTTParty::Response'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Indent when as deep as case.
    Open

          when 'Patron::Response'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Indent when as deep as case.
    Open

          when 'Faraday::Response'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Indent when as deep as case.
    Open

          when 'Typhoeus::Response'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Indent when as deep as case.
    Open

          when 'Tempfile', 'StringIO'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Line is too long. [88/80]
    Open

          [URI.parse(uri.to_s), (status ? Integer(status) : status), link, content_location]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Line is too long. [105/80]
    Open

          normalized_headers = Hash[headers.map { |key, value| [key.to_s.downcase, Array(value).join(',')] }]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Indent when as deep as case.
    Open

          when 'HTTP::Message'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Indent when as deep as case.
    Open

          when 'Hash'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Use a guard clause instead of wrapping the code inside a conditional expression.
    Open

            if defined?(Net::HTTPResponse) && Net::HTTPResponse === response
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Use a guard clause instead of wrapping the code inside a conditional expression

    Example:

    # bad
    def test
      if something
        work
      end
    end
    
    # good
    def test
      return unless something
      work
    end
    
    # also good
    def test
      work if something
    end
    
    # bad
    if something
      raise 'exception'
    else
      ok
    end
    
    # good
    raise 'exception' if something
    ok

    Line is too long. [95/80]
    Open

            uri = URI::HTTP.new(scheme, nil, response.host, nil, nil, response.path, nil, nil, nil)
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Line is too long. [86/80]
    Open

            [response.request.uri, response.code, grab_headers(response.response.to_hash)]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Indent when as deep as case.
    Open

          when 'HTTP::Response'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Indent when as deep as case.
    Open

          when 'Unirest::HttpResponse'
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

    It will register a separate offense for each misaligned when.

    Example:

    # If Layout/EndAlignment is set to keyword style (default)
    # *case* and *end* should always be aligned to same depth,
    # and therefore *when* should always be aligned to both -
    # regardless of configuration.
    
    # bad for all styles
    case n
      when 0
        x * 2
      else
        y / 3
    end
    
    # good for all styles
    case n
    when 0
      x * 2
    else
      y / 3
    end

    Example: EnforcedStyle: case (default)

    # if EndAlignment is set to other style such as
    # start_of_line (as shown below), then *when* alignment
    # configuration does have an effect.
    
    # bad
    a = case n
    when 0
      x * 2
    else
      y / 3
    end
    
    # good
    a = case n
        when 0
          x * 2
        else
          y / 3
    end

    Example: EnforcedStyle: end

    # bad
    a = case n
        when 0
          x * 2
        else
          y / 3
    end
    
    # good
    a = case n
    when 0
      x * 2
    else
      y / 3
    end

    Line is too long. [86/80]
    Open

            [response[:url], response[:status], grab_headers(response[:response_headers])]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Line is too long. [112/80]
    Open

            [response.url.chomp('?'), response.response_code, grab_headers(headers_from_string response.header_str)]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    Line is too long. [85/80]
    Open

            [response[:request_uri], response[:status], grab_headers(response[:headers])]
    Severity: Minor
    Found in lib/nitlink/response_normalizer.rb by rubocop

    There are no issues that match your filters.

    Category
    Status