dphaener/kanji

View on GitHub
lib/kanji/graph/register_object.rb

Summary

Maintainability
A
0 mins
Test Coverage

Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||.
Open

              if attribute.resolve
Severity: Minor
Found in lib/kanji/graph/register_object.rb by rubocop

Checks for if and unless statements that would fit on one line if written as a modifier if/unless. The maximum line length is configured in the Metrics/LineLength cop.

Example:

# bad
if condition
  do_stuff(bar)
end

unless qux.empty?
  Foo.do_something
end

# good
do_stuff(bar) if condition
Foo.do_something unless qux.empty?

Prefer the use of lambda.call(...) over lambda.(...).
Open

              type -> { coercer.(attribute.type) }
Severity: Minor
Found in lib/kanji/graph/register_object.rb by rubocop

This cop checks for use of the lambda.(args) syntax.

Example: EnforcedStyle: call (default)

# bad lambda.(x, y)

# good lambda.call(x, y)

Example: EnforcedStyle: braces

# bad lambda.call(x, y)

# good lambda.(x, y)

There are no issues that match your filters.

Category
Status