Sha256: 37f2bb696fd5763ea4a3a0cdcbb7897b0f20c6f0690354dd943a314735d9d10f
Contents?: true
Size: 808 Bytes
Versions: 61
Compression:
Stored size: 808 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.' 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
61 entries across 42 versions & 5 rubygems