Pattern: Lambda without literal block
Issue: -
This rule checks uses of lambda without a literal block.
# bad
lambda(&proc { do_something })
lambda(&Proc.new { do_something })
# good
proc { do_something }
Proc.new { do_something }
lambda { do_something } # If you use lambda.