decko-commons/decko

View on GitHub
mod/history/set/all/history/events.rb

Summary

Maintainability
A
0 mins
Test Coverage

Literal false appeared as a condition.
Open

  if false # Card::Change.supports_import?

This cop checks for literals used as the conditions or as operands in and/or expressions serving as the conditions of if/while/until.

Example:

# bad

if 20
  do_something
end

Example:

# bad

if some_var && true
  do_something
end

Example:

# good

if some_var && some_condition
  do_something
end

There are no issues that match your filters.

Category
Status