Sha256: fbdf93b7bbdef3c461d81eea2e2c1388a7d6837aa60437e6d9917df08f67678c

Contents?: true

Size: 1.35 KB

Versions: 220

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for while and until statements that would fit on one line
      # if written as a modifier while/until. The maximum line length is
      # configured in the `Layout/LineLength` cop.
      #
      # @example
      #   # bad
      #   while x < 10
      #     x += 1
      #   end
      #
      #   # good
      #   x += 1 while x < 10
      #
      # @example
      #   # bad
      #   until x > 10
      #     x += 1
      #   end
      #
      #   # good
      #   x += 1 until x > 10
      #
      # @example
      #   # bad
      #   x += 100 while x < 500 # a long comment that makes code too long if it were a single line
      #
      #   # good
      #   while x < 500 # a long comment that makes code too long if it were a single line
      #     x += 100
      #   end
      class WhileUntilModifier < Base
        include StatementModifier
        extend AutoCorrector

        MSG = 'Favor modifier `%<keyword>s` usage when having a single-line body.'

        def on_while(node)
          return unless single_line_as_modifier?(node)

          add_offense(node.loc.keyword, message: format(MSG, keyword: node.keyword)) do |corrector|
            corrector.replace(node, to_modifier_form(node))
          end
        end
        alias on_until on_while
      end
    end
  end
end

Version data entries

220 entries across 211 versions & 22 rubygems

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