Sha256: 330d962acb14d77db45d4677f79ee38cd7fa2904eda5b89fcf4928c6eb2f2a19

Contents?: true

Size: 934 Bytes

Versions: 3

Compression:

Stored size: 934 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks whether constant names are written using
      # SCREAMING_SNAKE_CASE.
      #
      # To avoid false positives, it ignores cases in which we cannot know
      # for certain the type of value that would be assigned to a constant.
      class ConstantName < Cop
        MSG = 'Use SCREAMING_SNAKE_CASE for constants.'.freeze
        SNAKE_CASE = /^[\dA-Z_]+$/

        def on_casgn(node)
          _scope, const_name, value = *node

          # We cannot know the result of method calls like
          # NewClass = something_that_returns_a_class
          # It's also ok to assign a class constant another class constant
          # SomeClass = SomeOtherClass
          return if value && %i[send block const].include?(value.type)

          add_offense(node, :name) if const_name !~ SNAKE_CASE
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubocop-0.49.1 lib/rubocop/cop/style/constant_name.rb
rubocop-0.49.0 lib/rubocop/cop/style/constant_name.rb
rubocop-0.48.1 lib/rubocop/cop/style/constant_name.rb