Sha256: 56eb6c1aae359923f419b7297a3c39cfa8cbfbccb84e99bf00fe375cc4904270

Contents?: true

Size: 1.27 KB

Versions: 22

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # Checks for colon (:) not followed by some kind of space.
      # N.B. this cop does not handle spaces after a ternary operator, which are
      # instead handled by Layout/SpaceAroundOperators.
      #
      # @example
      #   # bad
      #   def f(a:, b:2); {a:3}; end
      #
      #   # good
      #   def f(a:, b: 2); {a: 3}; end
      class SpaceAfterColon < Base
        extend AutoCorrector

        MSG = 'Space missing after colon.'

        def on_pair(node)
          return unless node.colon?

          colon = node.loc.operator

          register_offense(colon) unless followed_by_space?(colon)
        end

        def on_kwoptarg(node)
          # We have no direct reference to the colon source range following an
          # optional keyword argument's name, so must construct one.
          colon = node.loc.name.end.resize(1)

          register_offense(colon) unless followed_by_space?(colon)
        end

        private

        def register_offense(colon)
          add_offense(colon) { |corrector| corrector.insert_after(colon, ' ') }
        end

        def followed_by_space?(colon)
          /\s/.match?(colon.source_buffer.source[colon.end_pos])
        end
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 3 rubygems

Version Path
rubocop-1.23.0 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.22.3 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.22.2 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.22.1 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.22.0 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.21.0 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.20.0 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.19.1 lib/rubocop/cop/layout/space_after_colon.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/rubocop-1.18.3/lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.19.0 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.18.4 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.18.3 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.18.2 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.18.1 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.18.0 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.17.0 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.16.1 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.16.0 lib/rubocop/cop/layout/space_after_colon.rb
rubocop-1.15.0 lib/rubocop/cop/layout/space_after_colon.rb
cocRb-0.1.0 .bundle/ruby/3.0.0/gems/rubocop-1.14.0/lib/rubocop/cop/layout/space_after_colon.rb