Sha256: 5785d034d541bd2aeca0d69b696513a0a0e80b7e4a158296eb79b94532fce98b

Contents?: true

Size: 1.48 KB

Versions: 13

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

require 'rubocop'

module RuboCop
  module Cop
    module Sorbet
      # This cop disallows the calls that are used to get constants fom Strings
      # such as +constantize+, +const_get+, and +constants+.
      #
      # The goal of this cop is to make the code easier to statically analyze,
      # more IDE-friendly, and more predictable. It leads to code that clearly
      # expresses which values the constant can have.
      #
      # @example
      #
      #   # bad
      #   class_name.constantize
      #
      #   # bad
      #   constants.detect { |c| c.name == "User" }
      #
      #   # bad
      #   const_get(class_name)
      #
      #   # good
      #   case class_name
      #   when "User"
      #     User
      #   else
      #     raise ArgumentError
      #   end
      #
      #   # good
      #   { "User" => User }.fetch(class_name)
      class ConstantsFromStrings < ::RuboCop::Cop::Cop
        def_node_matcher(:constant_from_string?, <<-PATTERN)
          (send _ {:constantize :constants :const_get} ...)
        PATTERN

        def on_send(node)
          return unless constant_from_string?(node)
          add_offense(
            node,
            location: :selector,
            message: "Don't use `#{node.method_name}`, it makes the code harder to understand, less editor-friendly, " \
              "and impossible to analyze. Replace `#{node.method_name}` with a case/when or a hash."
          )
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rubocop-sorbet-0.6.2 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.6.1 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.6.0 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.5.1 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.5.0 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.4.1 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.4.0 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.3.7 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.3.6 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.3.5 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.3.4 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.3.3 lib/rubocop/cop/sorbet/constants_from_strings.rb
rubocop-sorbet-0.3.2 lib/rubocop/cop/sorbet/constants_from_strings.rb