class RuboCop::Cop::Layout::SpaceBeforeSemicolon

Checks for semicolon (‘;`) preceded by space.

@example

# bad
x = 1 ; y = 2

# good
x = 1; y = 2