Sha256: 7534616c98cb97a397ec149175d430e867338f031d4b8a38b77947f4ec8c86d6

Contents?: true

Size: 628 Bytes

Versions: 73

Compression:

Stored size: 628 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    # This auto-corrects punctuation
    class PunctuationCorrector
      class << self
        def remove_space(corrector, space_before)
          corrector.remove(space_before)
        end

        def add_space(corrector, token)
          corrector.replace(token.pos, "#{token.pos.source} ")
        end

        def swap_comma(corrector, range)
          return unless range

          case range.source
          when ',' then corrector.remove(range)
          else          corrector.insert_after(range, ',')
          end
        end
      end
    end
  end
end

Version data entries

73 entries across 73 versions & 8 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/correctors/punctuation_corrector.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.29.1 lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.29.0 lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.28.2 lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.28.1 lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.28.0 lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.27.0 lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.26.1 lib/rubocop/cop/correctors/punctuation_corrector.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.26.0 lib/rubocop/cop/correctors/punctuation_corrector.rb
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/correctors/punctuation_corrector.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.25.1 lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.25.0 lib/rubocop/cop/correctors/punctuation_corrector.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/correctors/punctuation_corrector.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/correctors/punctuation_corrector.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.24.1 lib/rubocop/cop/correctors/punctuation_corrector.rb
rubocop-1.24.0 lib/rubocop/cop/correctors/punctuation_corrector.rb