joonty/pessimize

View on GitHub
lib/pessimize/gemfile_lock_version_parser.rb

Summary

Maintainability
A
0 mins
Test Coverage

Put one space between the method name and the first argument.
Open

    attr_writer   :versions

Checks that exactly one space is used between a method name and the first argument for method calls without parentheses.

Alternatively, extra spaces can be added to align the argument with something on a preceding or following line, if the AllowForAlignment config parameter is true.

Example:

# bad
something  x
something   y, z
something'hello'

# good
something x
something y, z
something 'hello'

There are no issues that match your filters.

Category
Status