Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-25 06:09:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-25 06:09:02 +0300
commit26891eec2cea8ca5e75a96a50d8785da6042cc5a (patch)
treeb732a7a69a0a4cf44afa24bf9d6eddfa5c3805fd /rubocop
parent15e5a05bcd3525dd6c046dca2682b04532ba9bd1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'rubocop')
-rw-r--r--rubocop/cop/gitlab/deprecate_track_redis_hll_event.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/rubocop/cop/gitlab/deprecate_track_redis_hll_event.rb b/rubocop/cop/gitlab/deprecate_track_redis_hll_event.rb
deleted file mode 100644
index 58411357eeb..00000000000
--- a/rubocop/cop/gitlab/deprecate_track_redis_hll_event.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-# frozen_string_literal: true
-
-require 'rack/utils'
-
-module RuboCop
- module Cop
- module Gitlab
- # This cop prevents from using deprecated `track_redis_hll_event` method.
- #
- # @example
- #
- # # bad
- # track_redis_hll_event :show, name: 'p_analytics_valuestream'
- #
- # # good
- # track_event :show, name: 'g_analytics_valuestream', destinations: [:redis_hll]
- class DeprecateTrackRedisHLLEvent < RuboCop::Cop::Base
- MSG = '`track_redis_hll_event` is deprecated. Use `track_event` helper instead. ' \
- 'See https://docs.gitlab.com/ee/development/service_ping/implement.html#add-new-events'
-
- def_node_matcher :track_redis_hll_event_used?, <<~PATTERN
- (send _ :track_redis_hll_event ...)
- PATTERN
-
- def on_send(node)
- return unless track_redis_hll_event_used?(node)
-
- add_offense(node.loc.selector)
- end
- end
- end
- end
-end