Sha256: 37ed8b3b18ff20ec00b70c093ff94c001e8ec010b0208e37f775ad1535f0d525

Contents?: true

Size: 898 Bytes

Versions: 62

Compression:

Stored size: 898 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # This cop checks for space after `!`.
      #
      # @example
      #   # bad
      #   ! something
      #
      #   # good
      #   !something
      class SpaceAfterNot < Cop
        include RangeHelp

        MSG = 'Do not leave space between `!` and its argument.'

        def on_send(node)
          return unless node.prefix_bang? && whitespace_after_operator?(node)

          add_offense(node)
        end

        def whitespace_after_operator?(node)
          node.receiver.loc.column - node.loc.column > 1
        end

        def autocorrect(node)
          lambda do |corrector|
            corrector.remove(
              range_between(node.loc.selector.end_pos,
                            node.receiver.source_range.begin_pos)
            )
          end
        end
      end
    end
  end
end

Version data entries

62 entries across 43 versions & 5 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.89.1 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.89.0 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.88.0 lib/rubocop/cop/layout/space_after_not.rb
rbhint-0.87.1.rc1 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.87.1 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.87.0 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.86.0 lib/rubocop/cop/layout/space_after_not.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/layout/space_after_not.rb
rbhint-0.85.1.rc2 lib/rubocop/cop/layout/space_after_not.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.85.1 lib/rubocop/cop/layout/space_after_not.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.85.0 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.84.0 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.83.0 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.82.0 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.81.0 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.80.1 lib/rubocop/cop/layout/space_after_not.rb
rubocop-0.80.0 lib/rubocop/cop/layout/space_after_not.rb