class RuboCop::Cop::Rouge::NoHugeCollections
Constants
- MAX_SIZE
- MSG
- RESTRICT_ON_SEND
Public Instance Methods
Source
# File lib/rubocop/cop/rouge/no_huge_collections.rb, line 29 def on_array(node) if node.children.size >= MAX_SIZE add_offense(node) end end
Source
# File lib/rubocop/cop/rouge/no_huge_collections.rb, line 20 def on_send(node) return unless set_literal?(node) # adjust by 2 for the target and method name if node.children.size - 2 > MAX_SIZE add_offense(node) end end