Sha256: e48c4398f214046309b9d846f8f2403120288f4ee394cd01dd846d0ee11b35ab

Contents?: true

Size: 814 Bytes

Versions: 13

Compression:

Stored size: 814 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for class methods that are defined using the `::`
      # operator instead of the `.` operator.
      #
      # @example
      #   # bad
      #   class Foo
      #     def self::bar
      #     end
      #   end
      #
      #   # good
      #   class Foo
      #     def self.bar
      #     end
      #   end
      #
      class ColonMethodDefinition < Cop
        MSG = 'Do not use `::` for defining class methods.'.freeze

        def on_defs(node)
          return unless node.loc.operator.source == '::'
          add_offense(node, location: :operator)
        end

        def autocorrect(node)
          ->(corrector) { corrector.replace(node.loc.operator, '.') }
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
rubocop-0.58.2 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.58.1 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.58.0 lib/rubocop/cop/style/colon_method_definition.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.57.2 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.57.1 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.57.0 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.56.0 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.55.0 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.54.0 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.53.0 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.52.1 lib/rubocop/cop/style/colon_method_definition.rb
rubocop-0.52.0 lib/rubocop/cop/style/colon_method_definition.rb