Sha256: 005ff083035e6a1faef6eba2550a65a591ff6cb789a8a278a4cb030855dc74a8
Contents?: true
Size: 676 Bytes
Versions: 21
Compression:
Stored size: 676 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Rails # This cop checks for the use of the has_and_belongs_to_many macro. # # @example # # bad # # has_and_belongs_to_many :ingredients # # # good # # has_many :ingredients, through: :recipe_ingredients class HasAndBelongsToMany < Base MSG = 'Prefer `has_many :through` to `has_and_belongs_to_many`.' RESTRICT_ON_SEND = %i[has_and_belongs_to_many].freeze def on_send(node) return unless node.command?(:has_and_belongs_to_many) add_offense(node.loc.selector) end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems