Sha256: c251c1a8d85ce498426214a0d646397e21331834b220e503ce5fd6ea4b466ed7

Contents?: true

Size: 756 Bytes

Versions: 22

Compression:

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

22 entries across 22 versions & 4 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/float_out_of_range.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.29.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.29.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.28.2 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.28.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.28.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.27.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.26.1 lib/rubocop/cop/lint/float_out_of_range.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.26.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.25.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.25.0 lib/rubocop/cop/lint/float_out_of_range.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.24.1 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.24.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.23.0 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.22.3 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.22.2 lib/rubocop/cop/lint/float_out_of_range.rb
rubocop-1.22.1 lib/rubocop/cop/lint/float_out_of_range.rb