decko-commons/decko

View on GitHub
card/lib/card/director/all.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

Ambiguous keyword splat operator. Parenthesize the method arguments if it's surely a keyword splat operator, or add a whitespace to the right of the ** if it should be a exponent.
Open

        act(as_subcard: as_subcard) { super **args }
Severity: Minor
Found in card/lib/card/director/all.rb by rubocop

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)

There are no issues that match your filters.

Category
Status