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/put_group_routes_under_scope.rb')
-rw-r--r--rubocop/cop/put_group_routes_under_scope.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/rubocop/cop/put_group_routes_under_scope.rb b/rubocop/cop/put_group_routes_under_scope.rb
index 9adec044da8..83afd112b99 100644
--- a/rubocop/cop/put_group_routes_under_scope.rb
+++ b/rubocop/cop/put_group_routes_under_scope.rb
@@ -6,7 +6,7 @@ module RuboCop
module Cop
# Checks for a group routes outside '/-/' scope.
# For more information see: https://gitlab.com/gitlab-org/gitlab/issues/29572
- class PutGroupRoutesUnderScope < RuboCop::Cop::Cop
+ class PutGroupRoutesUnderScope < RuboCop::Cop::Base
include RoutesUnderScope
MSG = 'Put new group routes under /-/ scope'