travis-ci/job-board

View on GitHub
lib/job_board/models.rb

Summary

Maintainability
A
0 mins
Test Coverage

Empty line detected around arguments.
Open


        %i[pg_hstore pg_json]
Severity: Minor
Found in lib/job_board/models.rb by rubocop

This cops checks if empty lines exist around the arguments of a method invocation.

Example:

# bad
do_something(
  foo

)

process(bar,

        baz: qux,
        thud: fred)

some_method(

  [1,2,3],
  x: y
)

# good
do_something(
  foo
)

process(bar,
        baz: qux,
        thud: fred)

some_method(
  [1,2,3],
  x: y
)

There are no issues that match your filters.

Category
Status