Sha256: f5724b9c077c0f857bc6b231ad971b2449c57bded9b27e2674f835d56b05773b
Contents?: true
Size: 792 Bytes
Versions: 191
Compression:
Stored size: 792 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Style # 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 < Base extend AutoCorrector MSG = 'Do not use `::` for defining class methods.' def on_defs(node) return unless node.loc.operator.source == '::' add_offense(node.loc.operator) do |corrector| corrector.replace(node.loc.operator, '.') end end end end end end
Version data entries
191 entries across 184 versions & 18 rubygems