Sha256: 4dba7a0862a844ea0e8f4d1008094e14bbbd4788e6bfe8c075d8fcfc97e8461f
Contents?: true
Size: 772 Bytes
Versions: 54
Compression:
Stored size: 772 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Lint # This cop identifies Float literals which are, like, really really really # really really really really really big. Too big. No-one needs Floats # that big. If you need a float that big, something is wrong with you. # # @example # # # bad # # float = 3.0e400 # # @example # # # good # # float = 42.9 class FloatOutOfRange < Cop MSG = 'Float out of range.' def on_float(node) value, = *node return unless value.infinite? || value.zero? && node.source =~ /[1-9]/ add_offense(node) end end end end end
Version data entries
54 entries across 35 versions & 5 rubygems