iZettle/ninetails

View on GitHub
app/views/ninetails/folders/_folder.json.jbuilder

Summary

Maintainability
Test Coverage

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

  if folder.errors.present?

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?

There are no issues that match your filters.

Category
Status