Checks for if and unless statements that would fit on one line if
written as modifier if/unless. The cop also checks for modifier
if/unless lines that exceed the maximum line length.
The maximum line length is configured in the Layout/LineLength
cop. The tab size is configured in the IndentationWidth of the
Layout/IndentationStyle cop.
One-line pattern matching is always allowed. To ensure that there are few cases
where the match variable is not used, and to prevent oversights. The variable x
becomes undefined and raises NameError when the following example is changed to
the modifier form:
if[42]in[x]
x # `x` is undefined when using modifier form.
end
NOTE: It is allowed when defined? argument has an undefined value,
because using the modifier form causes the following incompatibility:
do_something_with_a_long_name(arg) if long_condition_that_prevents_code_fit_on_single_line
# good
do_stuff(bar) if condition
Foo.do_something unless qux.empty?
if long_condition_that_prevents_code_fit_on_single_line
do_something_with_a_long_name(arg)
end
if short_condition # a long comment that makes it too long if it were just a single line
do_something
end
Checks for places where string concatenation
can be replaced with string interpolation.
The cop can autocorrect simple cases but will skip autocorrecting
more complex cases where the resulting code would be harder to read.
In those cases, it might be useful to extract statements to local
variables or methods which you can then interpolate in a string.
NOTE: When concatenation between two strings is broken over multiple
lines, this cop does not register an offense; instead,
Style/LineEndConcatenation will pick up the offense if enabled.
Two modes are supported:
1. aggressive style checks and corrects all occurrences of + where
either the left or right side of + is a string literal.
2. conservative style on the other hand, checks and corrects only if
left side (receiver of + method call) is a string literal.
This is useful when the receiver is some expression that returns string like Pathname
instead of a string literal.
Safety:
This cop is unsafe in aggressive mode, as it cannot be guaranteed that
the receiver is actually a string, which can result in a false positive.
This cop is used to identify usages of all.each and
change them to use all.find_each instead.
Example:
# bad
User.all.each
# good
User.all.find_each
Checks for useless method definitions, specifically: empty constructors
and methods just delegating to super.
Safety:
This cop is unsafe as it can register false positives for cases when an empty
constructor just overrides the parent constructor, which is bad anyway.
Example:
# bad
def initialize
super
end
def method
super
end
# good - with default arguments
def initialize(x = Object.new)
super
end
# good
def initialize
super
initialize_internals
end
def method(*args)
super(:extra_arg, *args)
end
Checks for places where string concatenation
can be replaced with string interpolation.
The cop can autocorrect simple cases but will skip autocorrecting
more complex cases where the resulting code would be harder to read.
In those cases, it might be useful to extract statements to local
variables or methods which you can then interpolate in a string.
NOTE: When concatenation between two strings is broken over multiple
lines, this cop does not register an offense; instead,
Style/LineEndConcatenation will pick up the offense if enabled.
Two modes are supported:
1. aggressive style checks and corrects all occurrences of + where
either the left or right side of + is a string literal.
2. conservative style on the other hand, checks and corrects only if
left side (receiver of + method call) is a string literal.
This is useful when the receiver is some expression that returns string like Pathname
instead of a string literal.
Safety:
This cop is unsafe in aggressive mode, as it cannot be guaranteed that
the receiver is actually a string, which can result in a false positive.
Checks for places where string concatenation
can be replaced with string interpolation.
The cop can autocorrect simple cases but will skip autocorrecting
more complex cases where the resulting code would be harder to read.
In those cases, it might be useful to extract statements to local
variables or methods which you can then interpolate in a string.
NOTE: When concatenation between two strings is broken over multiple
lines, this cop does not register an offense; instead,
Style/LineEndConcatenation will pick up the offense if enabled.
Two modes are supported:
1. aggressive style checks and corrects all occurrences of + where
either the left or right side of + is a string literal.
2. conservative style on the other hand, checks and corrects only if
left side (receiver of + method call) is a string literal.
This is useful when the receiver is some expression that returns string like Pathname
instead of a string literal.
Safety:
This cop is unsafe in aggressive mode, as it cannot be guaranteed that
the receiver is actually a string, which can result in a false positive.
Checks for places where keyword arguments can be used instead of
boolean arguments when defining methods. respond_to_missing? method is allowed by default.
These are customizable with AllowedMethods option.
Safety:
This cop is unsafe because changing a method signature will
implicitly change behavior.
Example:
# bad
def some_method(bar = false)
puts bar
end
# bad - common hack before keyword args were introduced
def some_method(options = {})
bar = options.fetch(:bar, false)
puts bar
end
# good
def some_method(bar: false)
puts bar
end
Example: AllowedMethods: ['some_method']
# good
def some_method(bar = false)
puts bar
end
Use symbols as procs when possible.
If you prefer a style that allows block for method with arguments,
please set true to AllowMethodsWithArguments.
define_method? methods are allowed by default.
These are customizable with AllowedMethods option.
Safety:
This cop is unsafe because there is a difference that a Proc
generated from Symbol#to_proc behaves as a lambda, while
a Proc generated from a block does not.
For example, a lambda will raise an ArgumentError if the
number of arguments is wrong, but a non-lambda Proc will not.
For example:
classFoo
defbar
:bar
end
end
defcall(options ={},&block)
block.call(Foo.new, options)
end
call {|x| x.bar }
#=> :bar
call(&:bar)
# ArgumentError: wrong number of arguments (given 1, expected 0)
Checks that there are no repeated bodies
within if/unless, case-when, case-in and rescue constructs.
With IgnoreLiteralBranches: true, branches are not registered
as offenses if they return a basic literal value (string, symbol,
integer, float, rational, complex, true, false, or nil), or
return an array, hash, regexp or range that only contains one of
the above basic literal values.
With IgnoreConstantBranches: true, branches are not registered
as offenses if they return a constant value.
Example:
# bad
if foo
do_foo
do_something_else
elsif bar
do_foo
do_something_else
end
# good
if foo || bar
do_foo
do_something_else
end
# bad
case x
when foo
do_foo
when bar
do_foo
else
do_something_else
end
# good
case x
when foo, bar
do_foo
else
do_something_else
end
# bad
begin
do_something
rescue FooError
handle_error
rescue BarError
handle_error
end
# good
begin
do_something
rescue FooError, BarError
handle_error
end
Example: IgnoreLiteralBranches: true
# good
case size
when "small" then 100
when "medium" then 250
when "large" then 1000
else 250
end
Example: IgnoreConstantBranches: true
# good
case size
when "small" then SMALL_SIZE
when "medium" then MEDIUM_SIZE
when "large" then LARGE_SIZE
else MEDIUM_SIZE
end
This cop is used to identify usages of all.each and
change them to use all.find_each instead.
Example:
# bad
User.all.each
# good
User.all.find_each
Checks for places where string concatenation
can be replaced with string interpolation.
The cop can autocorrect simple cases but will skip autocorrecting
more complex cases where the resulting code would be harder to read.
In those cases, it might be useful to extract statements to local
variables or methods which you can then interpolate in a string.
NOTE: When concatenation between two strings is broken over multiple
lines, this cop does not register an offense; instead,
Style/LineEndConcatenation will pick up the offense if enabled.
Two modes are supported:
1. aggressive style checks and corrects all occurrences of + where
either the left or right side of + is a string literal.
2. conservative style on the other hand, checks and corrects only if
left side (receiver of + method call) is a string literal.
This is useful when the receiver is some expression that returns string like Pathname
instead of a string literal.
Safety:
This cop is unsafe in aggressive mode, as it cannot be guaranteed that
the receiver is actually a string, which can result in a false positive.
Identifies places where if-elsif constructions
can be replaced with case-when.
Safety:
This cop is unsafe. case statements use === for equality,
so if the original conditional used a different equality operator, the
behavior may be different.
Example: MinBranchesCount: 3 (default)
# bad
if status == :active
perform_action
elsif status == :inactive || status == :hibernating
check_timeout
elsif status == :invalid
report_invalid
else
final_action
end
# good
case status
when :active
perform_action
when :inactive, :hibernating
check_timeout
when :invalid
report_invalid
else
final_action
end
Example: MinBranchesCount: 4
# good
if status == :active
perform_action
elsif status == :inactive || status == :hibernating
check_timeout
elsif status == :invalid
report_invalid
else
final_action
end
Checks hash literal syntax.
It can enforce either the use of the class hash rocket syntax or
the use of the newer Ruby 1.9 syntax (when applicable).
A separate offense is registered for each problematic pair.
The supported styles are:
ruby19 - forces use of the 1.9 syntax (e.g. {a: 1}) when hashes have
all symbols for keys
hash_rockets - forces use of hash rockets for all hashes
nomixedkeys - simply checks for hashes with mixed syntaxes
ruby19nomixed_keys - forces use of ruby 1.9 syntax and forbids mixed
syntax hashes
This cop has EnforcedShorthandSyntax option.
It can enforce either the use of the explicit hash value syntax or
the use of Ruby 3.1's hash value shorthand syntax.
The supported styles are:
always - forces use of the 3.1 syntax (e.g. {foo:})
never - forces use of explicit hash literal value
either - accepts both shorthand and explicit use of hash literal value
consistent - forces use of the 3.1 syntax only if all values can be omitted in the hash
Example: EnforcedStyle: ruby19 (default)
# bad
{:a => 2}
{b: 1, :c => 2}
# good
{a: 2, b: 1}
{:c => 2, 'd' => 2} # acceptable since 'd' isn't a symbol