Sha256: 5410b4d818a61f5798d754f7ed82a511eea8878d8fa8c6676f4c10280df9ef88

Contents?: true

Size: 697 Bytes

Versions: 6852

Compression:

Stored size: 697 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # Checks for semicolon (;) not followed by some kind of space.
      #
      # @example
      #   # bad
      #   x = 1;y = 2
      #
      #   # good
      #   x = 1; y = 2
      class SpaceAfterSemicolon < Cop
        include SpaceAfterPunctuation

        def autocorrect(semicolon)
          PunctuationCorrector.add_space(semicolon)
        end

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

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

Version data entries

6,852 entries across 6,827 versions & 29 rubygems

Version Path
rubocop-0.58.2 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.58.1 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.58.0 lib/rubocop/cop/layout/space_after_semicolon.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.57.2 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.57.1 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.57.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.56.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.55.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.54.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.53.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-0.52.1 lib/rubocop/cop/layout/space_after_semicolon.rb