Welcome to mirror list, hosted at ThFree Co, Russian Federation.

weightage.rb « danger « tooling - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf8d17410dca20bfd39a3ffb61e468deff16cf35 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Tooling
  module Danger
    module Weightage
      CAPACITY_MULTIPLIER = 2 # change this number to change what it means to be a reduced capacity reviewer 1/this number
      BASE_REVIEWER_WEIGHT = 1
    end
  end
end