alexpeattie/nitlink

View on GitHub
lib/nitlink/param_extractor.rb

Summary

Maintainability
A
55 mins
Test Coverage

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

    def format(raw_params)
      raw_params.map do |raw_param_name, raw_param_value|
        next if !raw_param_name
        param_name = rstrip_ows(raw_param_name.downcase)

Severity: Minor
Found in lib/nitlink/param_extractor.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.

Method format has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def format(raw_params)
      raw_params.map do |raw_param_name, raw_param_value|
        next if !raw_param_name
        param_name = rstrip_ows(raw_param_name.downcase)

Severity: Minor
Found in lib/nitlink/param_extractor.rb - About 55 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

Add parentheses to nested method call lstrip_ows str.
Open

      rstrip_ows(lstrip_ows str)
Severity: Minor
Found in lib/nitlink/param_extractor.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)

Final newline missing.
Open

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

Missing top-level class documentation comment.
Open

  class ParamExtractor
Severity: Minor
Found in lib/nitlink/param_extractor.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

Favor unless over if for negative conditions.
Open

        next if !raw_param_name
Severity: Minor
Found in lib/nitlink/param_extractor.rb by rubocop

Checks for uses of if with a negated condition. Only ifs without else are considered. There are three different styles:

- both
- prefix
- postfix

Example: EnforcedStyle: both (default)

# enforces `unless` for `prefix` and `postfix` conditionals

# bad

if !foo
  bar
end

# good

unless foo
  bar
end

# bad

bar if !foo

# good

bar unless foo

Example: EnforcedStyle: prefix

# enforces `unless` for just `prefix` conditionals

# bad

if !foo
  bar
end

# good

unless foo
  bar
end

# good

bar if !foo

Example: EnforcedStyle: postfix

# enforces `unless` for just `postfix` conditionals

# bad

bar if !foo

# good

bar unless foo

# good

if !foo
  bar
end

Redundant return detected.
Open

      return format(raw_params)
Severity: Minor
Found in lib/nitlink/param_extractor.rb by rubocop

This cop checks for redundant return expressions.

Example:

def test
  return something
end

def test
  one
  two
  three
  return something
end

It should be extended to handle methods whose body is if/else or a case expression with a default branch.

There are no issues that match your filters.

Category
Status