class RuboCop::Cop::Style::EmptyElse
def check(node)
def check(node) return if cop_config['AllowComments'] && comment_in_else?(node) empty_check(node) if empty_style? nil_check(node) if nil_style? end
def check(node) return if cop_config['AllowComments'] && comment_in_else?(node) empty_check(node) if empty_style? nil_check(node) if nil_style? end