class RuboCop::Cop::Style::EmptyLinesAroundClassBody


end
end

def something
class Test
@example
configuration.
This cops checks if empty lines around the bodies of classes match the

def on_class(node)

def on_class(node)
  _name, _superclass, body = *node
  check(node, body)
end

def on_sclass(node)

def on_sclass(node)
  _obj, body = *node
  check(node, body)
end