Sha256: ea72b32fbdbf0961c517c7eb976ffb23f0470ef59240f74d8453027b3f176b94

Contents?: true

Size: 1.69 KB

Versions: 29

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for the use of strings as keys in hashes. The use of
      # symbols is preferred instead.
      #
      # @safety
      #   This cop is unsafe because while symbols are preferred for hash keys,
      #   there are instances when string keys are required.
      #
      # @example
      #   # bad
      #   { 'one' => 1, 'two' => 2, 'three' => 3 }
      #
      #   # good
      #   { one: 1, two: 2, three: 3 }
      class StringHashKeys < Base
        extend AutoCorrector

        MSG = 'Prefer symbols instead of strings as hash keys.'

        # @!method string_hash_key?(node)
        def_node_matcher :string_hash_key?, <<~PATTERN
          (pair (str _) _)
        PATTERN

        # @!method receive_environments_method?(node)
        def_node_matcher :receive_environments_method?, <<~PATTERN
          {
            ^^(send (const {nil? cbase} :IO) :popen ...)
            ^^(send (const {nil? cbase} :Open3)
                {:capture2 :capture2e :capture3 :popen2 :popen2e :popen3} ...)
            ^^^(send (const {nil? cbase} :Open3)
                {:pipeline :pipeline_r :pipeline_rw :pipeline_start :pipeline_w} ...)
            ^^(send {nil? (const {nil? cbase} :Kernel)} {:spawn :system} ...)
            ^^(send _ {:gsub :gsub!} ...)
          }
        PATTERN

        def on_pair(node)
          return unless string_hash_key?(node)
          return if receive_environments_method?(node)

          add_offense(node.key) do |corrector|
            symbol_content = node.key.str_content.to_sym.inspect

            corrector.replace(node.key, symbol_content)
          end
        end
      end
    end
  end
end

Version data entries

29 entries across 25 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/string_hash_keys.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/string_hash_keys.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/string_hash_keys.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/style/string_hash_keys.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/string_hash_keys.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/style/string_hash_keys.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cop/style/string_hash_keys.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/string_hash_keys.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.42.0 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.41.1 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.41.0 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.40.0 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.39.0 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.38.0 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.37.1 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.37.0 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.36.0 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.35.1 lib/rubocop/cop/style/string_hash_keys.rb
rubocop-1.35.0 lib/rubocop/cop/style/string_hash_keys.rb