class RuboCop::Cop::Layout::SpaceAfterSemicolon

x = 1; y = 2
# good
x = 1;y = 2
# bad
@example
Checks for semicolon (;) not followed by some kind of space.

def kind(token)

def kind(token)
  'semicolon' if token.semicolon?
end

def space_style_before_rcurly

def space_style_before_rcurly
  cfg = config.for_cop('Layout/SpaceInsideBlockBraces')
  cfg['EnforcedStyle'] || 'space'
end