Sha256: 7e28d17d3795739f182ca761d6ee630a01475a0606bcb87f223a40c00944c1a5

Contents?: true

Size: 1.05 KB

Versions: 38

Compression:

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

38 entries across 38 versions & 6 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.29.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.29.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.28.2 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.28.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.28.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.27.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.26.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.26.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.25.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.25.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.24.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.24.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.23.0 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.22.3 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.22.2 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb
rubocop-1.22.1 lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb