Sha256: 3bbfaf7fa6d52c27470fc0a0baaad02c7c13a25b844f6ebc5de1a6adb61ff4e9

Contents?: true

Size: 1.03 KB

Versions: 13

Compression:

Stored size: 1.03 KB

Contents

# encoding: utf-8
# 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 configurable.
      class WhileUntilModifier < Cop
        include StatementModifier

        def on_while(node)
          check(node)
        end

        def on_until(node)
          check(node)
        end

        def autocorrect(node)
          cond, body = *node
          oneline = "#{body.source} #{node.loc.keyword.source} " + cond.source
          ->(corrector) { corrector.replace(node.source_range, oneline) }
        end

        private

        def check(node)
          return unless node.loc.end
          return unless fit_within_line_as_modifier_form?(node)
          add_offense(node, :keyword, message(node.loc.keyword.source))
        end

        def message(keyword)
          "Favor modifier `#{keyword}` usage when having a single-line body."
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/while_until_modifier.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.42.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.41.2 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.41.1 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.41.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.40.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.39.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.38.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.37.2 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.37.1 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.37.0 lib/rubocop/cop/style/while_until_modifier.rb
rubocop-0.36.0 lib/rubocop/cop/style/while_until_modifier.rb