lib/mobility/plugins/backend_reader.rb
Use ==
if you meant to do a comparison or wrap the expression in parentheses to indicate you meant to assign in a condition. Wontfix
Wontfix
if backend_reader = options[:backend_reader]
- Read upRead up
- Exclude checks
This cop checks for assignments in the conditions of if/while/until.
Example:
# bad
if some_var = true
do_something
end
Example:
# good
if some_var == true
do_something
end