Sha256: e7506dc2cdb445a43f38479a2d5eebd5db17db7d46c73472a2853b053d9b1107

Contents?: true

Size: 1.06 KB

Versions: 35

Compression:

Stored size: 1.06 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 < Base
        include MultilineElementLineBreaks
        extend AutoCorrector

        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

        private

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

Version data entries

35 entries across 35 versions & 3 rubygems

Version Path
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.12.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.12.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.11.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.10.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.9.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.9.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.8.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.8.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.7.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.6.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.6.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.5.2 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.5.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.5.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb