cofiem/clearly-query

View on GitHub
bin/yard

Summary

Maintainability
Test Coverage

Align the parameters of a method call if they span more than one line.
Open

  Pathname.new(__FILE__).realpath)
Severity: Minor
Found in bin/yard by rubocop

Here we check if the parameters on a multi-line method call or definition are aligned.

Example: EnforcedStyle: withfirstparameter (default)

# good

foo :bar,
    :baz

# bad

foo :bar,
  :baz

Example: EnforcedStyle: withfixedindentation

# good

foo :bar,
  :baz

# bad

foo :bar,
    :baz

There are no issues that match your filters.

Category
Status