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/default_scope.rb')
-rw-r--r--rubocop/cop/default_scope.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/default_scope.rb b/rubocop/cop/default_scope.rb
index 39f8c8e9ed0..930a69be881 100644
--- a/rubocop/cop/default_scope.rb
+++ b/rubocop/cop/default_scope.rb
@@ -3,7 +3,7 @@
module RuboCop
module Cop
# Cop that blacklists the use of `default_scope`.
- class DefaultScope < RuboCop::Cop::Cop
+ class DefaultScope < RuboCop::Cop::Base
MSG = <<~EOF
Do not use `default_scope`, as it does not follow the principle of
least surprise. See https://gitlab.com/gitlab-org/gitlab/-/merge_requests/33847
@@ -17,7 +17,7 @@ module RuboCop
def on_send(node)
return unless default_scope?(node)
- add_offense(node, location: :expression)
+ add_offense(node)
end
end
end