summaryrefslogtreecommitdiff
path: root/rubocop/cop/gitlab
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-09-01 12:11:56 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-01 12:11:56 +0000
commita53033814ddff597cd05244f378915bacdcb5aea (patch)
treec72cddf8268e72cd46e3a1b0f04298aa6a04533b /rubocop/cop/gitlab
parentf60abc43151ae4589e96824c3c8674e76cb0cb9c (diff)
downloadgitlab-ce-a53033814ddff597cd05244f378915bacdcb5aea.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'rubocop/cop/gitlab')
-rw-r--r--rubocop/cop/gitlab/mark_used_feature_flags.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/rubocop/cop/gitlab/mark_used_feature_flags.rb b/rubocop/cop/gitlab/mark_used_feature_flags.rb
index df524c8b0d2..8fbcc56b906 100644
--- a/rubocop/cop/gitlab/mark_used_feature_flags.rb
+++ b/rubocop/cop/gitlab/mark_used_feature_flags.rb
@@ -37,7 +37,8 @@ module RuboCop
USAGE_DATA_COUNTERS_EVENTS_YAML_GLOBS = [
File.expand_path("../../../config/metrics/aggregates/*.yml", __dir__),
- File.expand_path("../../../lib/gitlab/usage_data_counters/known_events/*.yml", __dir__)
+ File.expand_path("../../../lib/gitlab/usage_data_counters/known_events/*.yml", __dir__),
+ File.expand_path("../../../ee/lib/ee/gitlab/usage_data_counters/known_events/*.yml", __dir__)
].freeze
class << self