2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
require_relative '../routes_under_scope'
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
module RuboCop
|
|
|
|
module Cop
|
|
|
|
# Checks for a project routes outside '/-/' scope.
|
|
|
|
# For more information see: https://gitlab.com/gitlab-org/gitlab/issues/29572
|
|
|
|
class PutProjectRoutesUnderScope < RuboCop::Cop::Cop
|
2020-10-24 23:57:45 +05:30
|
|
|
include RoutesUnderScope
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
MSG = 'Put new project routes under /-/ scope'
|
|
|
|
|
|
|
|
def_node_matcher :dash_scope?, <<~PATTERN
|
|
|
|
(:send nil? :scope (:str "-"))
|
|
|
|
PATTERN
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|