Sha256: d71ff1cb235d44fbb7416ab8958a79e2ae7fef2a554b87046e1b836ff514c86a

Contents?: true

Size: 778 Bytes

Versions: 37

Compression:

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

37 entries across 37 versions & 3 rubygems

Version Path
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/float_out_of_range.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/float_out_of_range.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/float_out_of_range.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/float_out_of_range.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/float_out_of_range.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.12.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.12.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.11.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.10.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.9.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.9.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.8.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.8.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.7.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.6.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.6.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.5.2 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.5.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.5.0 lib/rubocop/cop/lint/float_out_of_range.rb