Sha256: bd8e016239a8d225aa9dd76f8c2c274b7a74497ee29900528394453355b6a8ea
Contents?: true
Size: 917 Bytes
Versions: 6496
Compression:
Stored size: 917 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # This cop checks for missing space between a token and a comment on the # same line. # # @example # # bad # 1 + 1# this operation does ... # # # good # 1 + 1 # this operation does ... class SpaceBeforeComment < Cop MSG = 'Put a space before an end-of-line comment.'.freeze def investigate(processed_source) processed_source.tokens.each_cons(2) do |token1, token2| next unless token2.comment? next unless token1.line == token2.line if token1.pos.end == token2.pos.begin add_offense(token2.pos, location: token2.pos) end end end def autocorrect(range) ->(corrector) { corrector.insert_before(range, ' ') } end end end end end
Version data entries
6,496 entries across 6,490 versions & 24 rubygems