All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
A function argument is shadowed. It is usually a result of a typo.
do_something do |foo| foo = 42 puts foo end
do_something do |foo| foo = foo + 42 puts foo end