Sha256: a2ccc96fda376b0c434fef03c66455e736684469cba63e1cdcc7efe5f2848199

Contents?: true

Size: 754 Bytes

Versions: 16

Compression:

Stored size: 754 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 < 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

16 entries across 16 versions & 3 rubygems

Version Path
rubocop-1.20.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.19.1 lib/rubocop/cop/lint/float_out_of_range.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/rubocop-1.18.3/lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.19.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.18.4 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.18.3 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.18.2 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.18.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.18.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.17.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.16.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.16.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.15.0 lib/rubocop/cop/lint/float_out_of_range.rb
cocRb-0.1.0 .bundle/ruby/3.0.0/gems/rubocop-1.14.0/lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.14.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.13.0 lib/rubocop/cop/lint/float_out_of_range.rb