Sha256: 67840c21e4bd6ae50f5bcc33e5e34e41b5530582a87cb30d9c8c07d7462162cb

Contents?: true

Size: 1.37 KB

Versions: 7

Compression:

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

7 entries across 7 versions & 1 rubygems

Version Path
rubocop-1.12.1 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-1.12.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-1.11.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-1.10.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-1.9.1 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-1.9.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-1.8.1 lib/rubocop/cop/style/while_until_modifier.rb