Sha256: e971f634ebb42b0d10908e60f671b555a140095aafe9f21a3ca97dfbf418c783

Contents?: true

Size: 1000 Bytes

Versions: 6

Compression:

Stored size: 1000 Bytes

Contents

# frozen_string_literal: true

require_relative '../../model_helpers'

module Gitlab
  module Styles
    module Rubocop
      module Cop
        module Rails
          class IncludeUrlHelper < RuboCop::Cop::Cop
            MSG = <<~MSG
              Avoid including `ActionView::Helpers::UrlHelper`.
              It adds/overrides ~40 methods while usually only one is needed.
              Instead, use the `Gitlab::Routing.url_helpers`/`Application.routes.url_helpers`(outside of gitlab)
              and `ActionController::Base.helpers.link_to`.
              See https://gitlab.com/gitlab-org/gitlab/-/issues/340567.
            MSG

            def_node_matcher :include_url_helpers_node?, <<~PATTERN
              (send nil? :include (const (const (const {nil? cbase} :ActionView) :Helpers) :UrlHelper))
            PATTERN

            def on_send(node)
              add_offense(node) if include_url_helpers_node?(node)
            end
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gitlab-styles-7.1.0 lib/gitlab/styles/rubocop/cop/rails/include_url_helper.rb
gitlab-styles-7.0.0 lib/gitlab/styles/rubocop/cop/rails/include_url_helper.rb
gitlab-styles-6.6.0 lib/gitlab/styles/rubocop/cop/rails/include_url_helper.rb
gitlab-styles-6.5.0 lib/gitlab/styles/rubocop/cop/rails/include_url_helper.rb
gitlab-styles-6.4.0 lib/gitlab/styles/rubocop/cop/rails/include_url_helper.rb
gitlab-styles-6.3.0 lib/gitlab/styles/rubocop/cop/rails/include_url_helper.rb