Sha256: 26d1abad97046cedfbd98fcf8e2a571bffca72975fff984ca6c1bc98d4586ddc

Contents?: true

Size: 1.12 KB

Versions: 60

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # This cop ensures that each key in a multi-line hash
      # starts on a separate line.
      #
      # @example
      #
      #   # bad
      #   {
      #     a: 1, b: 2,
      #     c: 3
      #   }
      #
      #   # good
      #   {
      #     a: 1,
      #     b: 2,
      #     c: 3
      #   }
      class MultilineHashKeyLineBreaks < Cop
        include MultilineElementLineBreaks

        MSG = 'Each key in a multi-line hash must start on a ' \
          'separate line.'

        def on_hash(node)
          # This cop only deals with hashes wrapped by a set of curly
          # braces like {foo: 1}. That is, not a kwargs hashes.
          # Style/MultilineMethodArgumentLineBreaks handles those.
          return unless starts_with_curly_brace?(node)

          check_line_breaks(node, node.children) if node.loc.begin
        end

        def autocorrect(node)
          EmptyLineCorrector.insert_before(node)
        end

        private

        def starts_with_curly_brace?(node)
          node.loc.begin
        end
      end
    end
  end
end

Version data entries

60 entries across 41 versions & 5 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.89.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.89.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.88.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.87.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.87.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.86.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.85.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.85.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.84.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.83.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.82.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.81.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.80.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-0.80.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/rubocop-0.79.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb