All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Put the end of empty method definitions on the next line. A method definition is not considered empty if it contains comments.
end
def foo(bar) end def self.foo(bar) end
def foo(bar); end def foo(bar) # baz end def self.foo(bar); end