Sha256: 7605d4e888647ebea919a6728f5c113393f929177f3f8b1838e0344270fcde58

Contents?: true

Size: 905 Bytes

Versions: 6

Compression:

Stored size: 905 Bytes

Contents

# frozen_string_literal: true

require_relative '../model_helpers'

module Gitlab
  module Styles
    module Rubocop
      module Cop
        # Cop that prevents the use of `dependent: ...` in ActiveRecord models.
        class ActiveRecordDependent < RuboCop::Cop::Cop
          include ModelHelpers

          MSG = 'Do not use `dependent: to remove associated data, ' \
            'use foreign keys with cascading deletes instead'

          METHOD_NAMES = [:has_many, :has_one, :belongs_to].freeze

          def on_send(node)
            return unless in_model?(node)
            return unless METHOD_NAMES.include?(node.children[1])

            node.children.last.each_node(:pair) do |pair|
              key_name = pair.children[0].children[0]

              add_offense(pair, location: :expression) if key_name == :dependent
            end
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gitlab-styles-5.0.0 lib/gitlab/styles/rubocop/cop/active_record_dependent.rb
gitlab-styles-4.3.0 lib/gitlab/styles/rubocop/cop/active_record_dependent.rb
gitlab-styles-4.2.0 lib/gitlab/styles/rubocop/cop/active_record_dependent.rb
gitlab-styles-4.1.0 lib/gitlab/styles/rubocop/cop/active_record_dependent.rb
gitlab-styles-4.0.0 lib/gitlab/styles/rubocop/cop/active_record_dependent.rb
gitlab-styles-3.4.0 lib/gitlab/styles/rubocop/cop/active_record_dependent.rb