Sha256: 43d98bc5896a4affb38c31012cd6a9518ea80454131cfa80f2deb83b62666f42

Contents?: true

Size: 1.69 KB

Versions: 21

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop 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

21 entries across 21 versions & 4 rubygems

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