Sha256: 032639face3b0dac0445277cc08801334230f4de67839588c69f9aa4de677206
Contents?: true
Size: 994 Bytes
Versions: 6
Compression:
Stored size: 994 Bytes
Contents
# frozen_string_literal: true require_relative 'smell_detector' require_relative 'smell_warning' module Reek module Smells # # a module is usually a mixin, so when initialize method is present it is # hard to tell initialization order and parameters so having 'initialize' # in a module is usually a bad idea # # See {file:docs/Module-Initialize.md} for details. class ModuleInitialize < SmellDetector def self.contexts # :nodoc: [:module] end # # Checks whether module has method 'initialize'. # # @return [Array<SmellWarning>] # # :reek:FeatureEnvy def sniff(ctx) ctx.local_nodes(:def) do |node| if node.name.to_s == 'initialize' return [ smell_warning( context: ctx, lines: [ctx.exp.line], message: 'has initialize method') ] end end [] end end end end
Version data entries
6 entries across 6 versions & 1 rubygems