koraktor/gallerist

View on GitHub
config.ru

Summary

Maintainability
Test Coverage

Line is too long. [85/80]
Open

    Gallerist.stdout << "\e]1;Gallerist (listening on #{Gallerist.options[:port]})\a"
Severity: Minor
Found in config.ru by rubocop

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

    'rack.errors' => $stderr,
    'rack.warmup' => true,
    'rack.warmup.error' => error
Severity: Minor
Found in config.ru 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