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/avoid_feature_category_not_owned.rb')
-rw-r--r--rubocop/cop/gitlab/avoid_feature_category_not_owned.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/gitlab/avoid_feature_category_not_owned.rb b/rubocop/cop/gitlab/avoid_feature_category_not_owned.rb
index fb790f44a96..05d7824f92e 100644
--- a/rubocop/cop/gitlab/avoid_feature_category_not_owned.rb
+++ b/rubocop/cop/gitlab/avoid_feature_category_not_owned.rb
@@ -5,7 +5,7 @@ require_relative '../../code_reuse_helpers'
module RuboCop
module Cop
module Gitlab
- class AvoidFeatureCategoryNotOwned < RuboCop::Cop::Cop
+ class AvoidFeatureCategoryNotOwned < RuboCop::Cop::Base
include ::RuboCop::CodeReuseHelpers
MSG = 'Avoid adding new endpoints with `feature_category :not_owned`. See https://docs.gitlab.com/ee/development/feature_categorization'
@@ -25,7 +25,7 @@ module RuboCop
return unless file_needs_feature_category?(node)
return unless setting_not_owned?(node)
- add_offense(node, location: :expression)
+ add_offense(node)
end
private