Sha256: 42e78a06fe7bdba0ff6a3f7cf5437735730e9211ca3b3cbc7da85638d62c3bca

Contents?: true

Size: 627 Bytes

Versions: 265

Compression:

Stored size: 627 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 < Base
        include SpaceAfterPunctuation
        extend AutoCorrector

        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

265 entries across 256 versions & 24 rubygems

Version Path
rubocop-1.71.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.70.0 lib/rubocop/cop/layout/space_after_semicolon.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.69.2 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.69.1 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.69.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.68.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.67.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.66.1 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.66.0 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.65.1 lib/rubocop/cop/layout/space_after_semicolon.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.65.0 lib/rubocop/cop/layout/space_after_semicolon.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/layout/space_after_semicolon.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/layout/space_after_semicolon.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/layout/space_after_semicolon.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.64.1 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.63.4 lib/rubocop/cop/layout/space_after_semicolon.rb
rubocop-1.63.3 lib/rubocop/cop/layout/space_after_semicolon.rb