Sha256: 4632295df2d3e36dddafa9765a5488bf12c716ee7f138ed81780cd3f43ed8224

Contents?: true

Size: 305 Bytes

Versions: 23

Compression:

Stored size: 305 Bytes

Contents

# encoding: utf-8

module RuboCop
  module Cop
    module Style
      # Checks for semicolon (;) preceded by space.
      class SpaceBeforeSemicolon < Cop
        include SpaceBeforePunctuation

        def kind(token)
          'semicolon' if token.type == :tSEMI
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
rubocop-0.25.0 lib/rubocop/cop/style/space_before_semicolon.rb
rubocop-0.24.1 lib/rubocop/cop/style/space_before_semicolon.rb
rubocop-0.24.0 lib/rubocop/cop/style/space_before_semicolon.rb