Sha256: 46d35761195c6b2c5fbce969414cf42d7804d8fe9d891b2eb464a876f8834097

Contents?: true

Size: 567 Bytes

Versions: 18

Compression:

Stored size: 567 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for uses of class variables. Offenses
      # are signaled only on assignment to class variables to
      # reduced the number of offenses that would be reported.
      class ClassVars < Cop
        MSG = 'Replace class var %s with a class instance var.'.freeze

        def on_cvasgn(node)
          add_offense(node, :name)
        end

        def message(node)
          class_var, = *node
          format(MSG, class_var)
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_vars.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_vars.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_vars.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_vars.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_vars.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_vars.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_vars.rb
rubocop-0.50.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.49.1 lib/rubocop/cop/style/class_vars.rb
rubocop-0.49.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.48.1 lib/rubocop/cop/style/class_vars.rb
rubocop-0.48.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.47.1 lib/rubocop/cop/style/class_vars.rb
rubocop-0.47.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.46.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.45.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.44.1 lib/rubocop/cop/style/class_vars.rb
rubocop-0.44.0 lib/rubocop/cop/style/class_vars.rb