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:
Diffstat (limited to 'rubocop/cop/gitlab/feature_available_usage.rb')
-rw-r--r--rubocop/cop/gitlab/feature_available_usage.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/rubocop/cop/gitlab/feature_available_usage.rb b/rubocop/cop/gitlab/feature_available_usage.rb
index cbfb89d3053..307ff7ea6f6 100644
--- a/rubocop/cop/gitlab/feature_available_usage.rb
+++ b/rubocop/cop/gitlab/feature_available_usage.rb
@@ -32,7 +32,7 @@ module RuboCop
].freeze
EE_FEATURES = %i[requirements].freeze
ALL_FEATURES = (FEATURES + EE_FEATURES).freeze
- SPECIAL_CLASS = %w[License].freeze
+ SPECIAL_CLASS = %w[License Gitlab::Saas].freeze
def on_send(node)
return unless method_name(node) == OBSERVED_METHOD