All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
lambda
proc
Scope calls should not pass a method (usually a scope) instead of a lambda/proc.
scope :something, where(something: true)
scope :something, -> { where(something: true) }