summaryrefslogtreecommitdiff
path: root/lib/gitlab/danger/weightage.rb
blob: 67fade275730d7f7c2b2f82d2338ecd98a64a787 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Gitlab
  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