reactrb/reactive-record

View on GitHub
lib/reactive_record/active_record/aggregations.rb

Summary

Maintainability
A
0 mins
Test Coverage

Ambiguous block operator. Parenthesize the method arguments if it's surely a block operator, or add a whitespace to the right of the & if it should be a binary AND.
Open

          @mapped_attributes = options[:mapping].collect &:last

This cop checks for ambiguous operators in the first argument of a method invocation without parentheses.

Example:

# bad

# The `*` is interpreted as a splat operator but it could possibly be
# a `*` method invocation (i.e. `do_something.*(some_array)`).
do_something *some_array

Example:

# good

# With parentheses, there's no ambiguity.
do_something(*some_array)

Unused method argument - macro. If it's necessary, use _ or _macro as an argument name to indicate that it won't be used.
Open

      def initialize(owner_class, macro, name, options = {})

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