Sha256: 02a4d2d046656da39dbee04e081553fe058b68c6e0b3d21a50adb294d519ae4d

Contents?: true

Size: 706 Bytes

Versions: 5

Compression:

Stored size: 706 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # 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
      #
      #   # good
      #   float = 42.9
      class FloatOutOfRange < Base
        MSG = 'Float out of range.'

        def on_float(node)
          value, = *node

          return unless value.infinite? || (value.zero? && /[1-9]/.match?(node.source))

          add_offense(node)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubocop-1.68.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.67.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.66.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.66.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.65.1 lib/rubocop/cop/lint/float_out_of_range.rb