am-kantox/dry-mutations

View on GitHub
lib/dry/mutations/transactions/dsl.rb

Summary

Maintainability
A
25 mins
Test Coverage

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

        def self.extended base
          fail Errors::TypeError.new("Extended class [#{base}] should not respond to :call, it is defined by this extension.") if base.respond_to?(:call)
          base.send :define_method, :initialize do |*input|
            @input = Utils.RawInputs(*input)
          end unless base.instance_methods(false).include?(:initialize)
Severity: Minor
Found in lib/dry/mutations/transactions/dsl.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

FIXME found
Open

          return enum_for(:chain) unless block_given? # FIXME: Needed? Works? Remove?
Severity: Minor
Found in lib/dry/mutations/transactions/dsl.rb by fixme

Unused method argument - params. If it's necessary, use _ or _params as an argument name to indicate that it won't be used. You can also write as chain(*) if you want the method to accept any arguments but don't care about them.
Open

        def chain **params

This cop checks for unused method arguments.

Example:

# bad

def some_method(used, unused, _unused_but_allowed)
  puts used
end

Example:

# good

def some_method(used, _unused, _unused_but_allowed)
  puts used
end

There are no issues that match your filters.

Category
Status