Sha256: 08fa2649b7372ba83c30ab74b05a8d49795416438f14a463420212d35288c392

Contents?: true

Size: 1.04 KB

Versions: 26

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # 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

26 entries across 22 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.40.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.39.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.38.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.37.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.37.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.36.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.35.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.35.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.34.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.34.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.33.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb