lib/db_mod/statements/default_method_settings.rb

Summary

Maintainability
A
0 mins
Test Coverage

Indent the first line of the right-hand-side of a multi-line assignment.
Open

                Configuration::MethodConfiguration.new

This cop checks the indentation of the first line of the right-hand-side of a multi-line assignment.

Example:

# bad
value =
if foo
  'bar'
end

# good
value =
  if foo
    'bar'
  end

The indentation of the remaining lines can be corrected with other cops such as IndentationConsistency and EndAlignment.

There are no issues that match your filters.

Category
Status